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=5 | |
// Copyright all rights reserved to DaviddTech | |
indicator('DEMA + Vumanuchi Swing (Alert)', overlay=true) | |
// Timeframe 5m, BTCUSDT | |
// ****************************************************************************// | |
// ---------------------------------> Edit here ------------------------------ // | |
// ****************************************************************************// | |
st_isPlot = input.bool(true, 'Plot strategy indicators(except oscillators)', group='Strategy: base') |
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
def initialize(state): | |
pass | |
@schedule(interval="6h", symbol="BTCUSDT") | |
def handler(state, data): | |
''' | |
1) Compute indicators from data and add parameters into strategy | |
''' |
OlderNewer