multiple timeframe trading

EMA
Created on: 2022-05-05 21:49:48 Modified on: 2022-05-06 16:47:08
Copy: 8 Number of hits: 1634
avatar of QCoder QCoder
11
Follow
607
Followers

Demonstrates how the pine language use multiple timeframe

Strategy source code
/*backtest
start: 2021-05-04 00:00:00
end: 2022-05-03 23:59:00
period: 1d
basePeriod: 1h
exchanges: [{"eid":"Bitfinex","currency":"BTC_USD"}]
*/
strategy("multiple timeframe trading")

expr = ta.ema(close, 5)
hVal = request.security(syminfo.tickerid, '60', expr)

plot(expr, timeframe.period)
plot(hVal, '1hour')

// 5 hour vs 5 days
if hVal > expr
    strategy.entry("long", strategy.long)
else
    strategy.entry("short", strategy.short)