Attachments forums

List of attachments posted on this forum.


All files on forums: 161074

Re: RSI Indicators for MT4

COGSY, Tue Dec 17, 2024 10:54 pm

RSI Final update:

I got my programmer to take a look, Chatgpt has trouble with very fine details, we corrected the problem in 2 minutes.

He changed this:

for (i = startBar; i >=0; i--)


To this:
for (i = startBar; i > 0; i--)

One = symbol, the indicator was calculating ever tick, this changes that to every candle close
All files in topic