[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Forecast Rsi



PureBytes Links

Trading Reference Links

Hi, Dimitri & All

I have tried to write a first version of a forecast rsi 
the plugin must plot the value of the Close if you want that the Rsi 
reaches tomorrow a defined level.


Plot( C ,"",2,1);
Plot( RsiF(14,50) ,"",5,1);

the name of the function is RsiF ( first val, second val)

first value is the period of the RSI
the second value is the level that you want the RSI hit tomorrow
the plugin gives you the close.

if you have the "courage" to check it...
the plugin named forecastrsi is in the files ( PLUGIN DLL)

Thanks 

Stephane




FunctionTag gFunctionTable[] = 
{
"RsiP", { VRsiPrev, 0, 0, 1, 0, NULL },
"RsiF", { VRsiForecast, 0, 0, 2, 0, NULL },

};