Created
September 2, 2015 05:14
-
-
Save CryptoRox/ba7d3aff9dbfe41d47a4 to your computer and use it in GitHub Desktop.
Alert Indicator for 1 minute forex scalping
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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 | |
plot(long, "long", color=green, linewidth=1) | |
plot(short, "short", color=red, linewidth=1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment