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
//@version=3 | |
// TODO: update strategy name | |
strategy("{STRATEGY NAME}", overlay=true) | |
// === TA LOGIC === | |
// | |
// | |
// TODO: PUT YOUR TA LOGIC HERE | |
LONG_SIGNAL_BOOLEAN = crossover(sma(close, 13), sma(close, 34)) |
OlderNewer