Skip to content

Instantly share code, notes, and snippets.

@CryptoRox
CryptoRox / gist:ba7d3aff9dbfe41d47a4
Created September 2, 2015 05:14
Alert Indicator for 1 minute forex scalping
//Indicator for 1 minute forex scalping, to be used for firing alerts and automating trades using AutoView the Chrome extension
//@version=2
study("My1minforex", overlay=false)
a = ema(close, 12)
b = ema(close, 26)
c = sma(close, 55)
long = cross(a, c) and a > c
short = cross(a, c) and a < c
@CryptoRox
CryptoRox / gist:66c471bfc0d41067ba91
Last active March 17, 2018 15:17
TradingView - 1 Minute Forex Scalping Strategy
//Strategy taken from http://www.dolphintrader.com/1-min-easy-forex-scalping-strategy/
//@version=2
strategy("1 min forex scalping", shorttitle="Scalping", overlay=true)
a = ema(close, 12)
b = ema(close, 26)
c = sma(close, 55)
TP = input(0)
SL = input(0)
TS = input(0)