Skip to content

Instantly share code, notes, and snippets.

View quyengeek's full-sized avatar

Ngọc Quyền quyengeek

  • Vietnam
View GitHub Profile

Keybase proof

I hereby claim:

  • I am quyengeek on github.
  • I am quyengeek (https://keybase.io/quyengeek) on keybase.
  • I have a public key ASD9auRMzR71p3UKGA2JlXriXkKj6eUWpTvV80mk8wZodAo

To claim this, I am signing this object:

@quyengeek
quyengeek / Vdub FX SniperVX3
Last active January 10, 2019 03:30
Vdub FX SniperVX3
//@version=2
strategy(title='Vdub FX SniperVX3 / Strategy v3', shorttitle='Vdub_FX_SniperVX3_Strategy', overlay=true, pyramiding=0, initial_capital=1000, currency=currency.USD)
//Candle body resistance Channel-----------------------------//
len = 34
src = input(close, title="Candle body resistance Channel")
out = sma(src, len)
last8h = highest(close, 13)
lastl8 = lowest(close, 13)
bearish = cross(close,out) == 1 and falling(close, 1)
. . .
#style-1::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}
@quyengeek
quyengeek / style.css
Created August 3, 2017 15:50
Customize browser scrollbar
. . .
#style-1::-webkit-scrollbar-thumb {
background-color: #000000;
}
. . .
@quyengeek
quyengeek / style.css
Created August 3, 2017 15:44
Customize browser scrollbar
. . .
#style-1::-webkit-scrollbar {
width: 6px;
background-color: #F5F5F5;
}
. . .
@quyengeek
quyengeek / style.css
Created August 3, 2017 15:03
Customize browser scrollbar
.scrollbar {
background-color: #F5F5F5;
float: left;
height: 300px;
margin-bottom: 25px;
margin-left: 22px;
margin-top: 40px;
width: 65px;
overflow-y: scroll;
}
@quyengeek
quyengeek / index.html
Created August 3, 2017 14:55
Customize browser scrollbar
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Customize the Browser's Scrollbar with CSS</title>
<link type="text/css" rel="stylesheet" href="styles.css">
</head>
<body>
<div class="scrollbar" id="style-1">
<div class="force-overflow"></div>
/* Heart Icon
--------------------------------------------- */
.site-footer .icon {
font-size: 20px;
}
.site-footer .love .icon {
font-size: 12px;
margin-left: 2px;
<p class="love">Made with <i class="icon ion-heart"></i> by itidea.org</p>
<?php
//* Do NOT include the opening php tag
//* Enqueue Ionicons
add_action( 'wp_enqueue_scripts', 'bg_enqueue_ionicons' );
function bg_enqueue_ionicons() {
wp_enqueue_style( 'ionicons', '//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css', array(), CHILD_THEME_VERSION );
}