Skip to content

Instantly share code, notes, and snippets.

View DeBelserArne's full-sized avatar

Arne De Belser (Personal) DeBelserArne

View GitHub Profile
//@version=4
'''
Quick explanation from "Market Cipher - what is just a closed source of this script with alerts. (DO NOT PAY 1.500$ JUST FOR ALERT FUNCTION!)"
Market Cipher B is an all-in-one oscillator allowing for more quality indications than ever before.
It combines five algorithms (some well-known, some custom) that have all been fine-tuned and smoothed for optimal analysis and trading results.
When all of the algorithms converge, Market Cipher B will project a “Green Dot” which will aid you in longing the dips in bull markets as well as temporarily exiting shorts in bear markets.
The Green Dot is often accompanied by extreme sellers’ momentum and will warn you of potential market bottoms, giving you strong hands even when the night is at its darkest.
Market Cipher B certainly excels on the small time frames, but is a particularly deadly tool for isolating large swings in the market.
@DeBelserArne
DeBelserArne / fonts.js
Last active August 8, 2019 14:28 — forked from JacobBennett/fonts.js
List all font styles being used on the page
var ret={};
jQuery('*').each(function () {
var str = jQuery(this).css('font-family');
str = str + ':' + jQuery(this).css('font-weight');
str = str + ':' + jQuery(this).css('font-style');
if (ret[str] ) {
ret[str] = ret[str] + 1;
} else {
ret[str] = 1;
}
@DeBelserArne
DeBelserArne / cloudSettings
Last active November 8, 2019 15:48
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-11-08T15:48:06.827Z","extensionVersion":"v3.4.3"}
#!/bin/sh
# If you would like to do some extra provisioning you may
# add any commands you wish to this file and they will
# be run after the Homestead machine is provisioned.
wget https://xdebug.org/files/xdebug-2.5.5.tgz
tar xvzf xdebug-2.5.5.tgz
cd xdebug-2.5.5
phpize