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 |
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
//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) |