Code: Select all
double rsiValue[i] = iRSI(NULL, 0, RSI_Period, RSI_Source, i);
double rsiMA[i] = iMAOnArray(rsiValue,0,RSI_MA_Period, 0, MODE_SMA, i);
extern ENUM_APPLIED_PRICE RSI_Source = PRICE_CLOSE;
etc.
Code: Select all
double rsiValue[i] = iRSI(NULL, 0, RSI_Period, RSI_Source, i);
double rsiMA[i] = iMAOnArray(rsiValue,0,RSI_MA_Period, 0, MODE_SMA, i);
It's a renamed non-lag ma which if usings colors it can repaint. We have some non-repainting versions here in the forum with arrows, etc.mate wrote: Tue Nov 07, 2023 5:44 pm Good evening, it seems to me it will be interesting if you add an arrow to change the color and the mtf function. thank you in advance
Posted a version herenaluvs01 wrote: Tue Nov 07, 2023 11:30 pm Hi Mr Tools and coders respectively,
I found this volume indicator that seems promising with adding a 100-LWMA to confirm trend direction (with other confluences of course). However, it seems to be a heavy indicator (even though the code seems simple, I think) because every time I switch pairs, it takes a minute or two to load. I wanted to know if the code can be edited to make load times faster or maybe a lite version. I know it's derived from the OBV. Marc Chaikin created it, but used the midpoint of the day's close instead of the actual day's close.
Thank you for your time and consideration, always!!!!!
mntiwana wrote: Sun Apr 30, 2017 1:18 am Trend direction & force index - smoothed 1.01.mq4
A new version with jurik and some upgrades
Upgraded trend direction & force index that uses jurik smoothing for result smoothing
- made user friendly
- made multi time frame
- made some fancy histogram display
- some code optimization done
Originaly posted here : viewtopic.php?p=1295351803#p1295351803
That indicator is trying to look into the future which makes it a repainter.delp wrote: Thu Nov 09, 2023 9:54 pm Dear Mr.tools, Mr.kvak, please make a version of this index for the main schedule.
A combined indicator based on it in the lower window creates problems,
I would like for convenience
move it to the main chart.