Page 1 of 1

RSI Strategy

PostPosted: Wed Nov 16, 2016 8:37 am
by Apprentice
EURUSD H1 (11-16-2016 1348).png

2.png


peakRSI = rsi > ref(rsi,-1) and rsi > ref(rsi,+1);
troughRSI = rsi <ref(rsi,-1) and rsi < ref(rsi,+1);

Long:
crossover(rsi,peakRSI) and C > C (at time have last peak RSI)
Short:
crossunder(rsi, troughRSI) and C < C( at time have last trough RSI)

RSI Strategy.lua
(21.42 KiB) Downloaded 636 times


The Strategy was revised and updated on January 18, 2019.

Re: RSI Strategy

PostPosted: Sun Dec 18, 2016 10:12 am
by Apprentice
Strategy was revised and updated.