Hi,
I'm building an eSignal Study, that displays a market forecast based on a chaos based model, that predicts the market intraday.
I have been able to chart the signal and display the market forward using drawline command.
Now I would like to compute standard TA Studies, like EMA, SMA, CCI, etc (all that are a function of the price.
How can I use the standard functions? I can creat an array and concatenate the Market Price, with the predicted price. But the studies seem to accept only the symbol as an input.
This is how the study looks like.
And this is the command I use to chart the market prediction.
for (var x=2; x<=Offset; x++){
drawLineRelative(x-1-Correction,aPrediction[x-1],x-Correction,aPrediction[x] ,PS_SOLID,3,Color.grey,"plot"+x);
}
return;
Thank you for your help.
DB
I'm building an eSignal Study, that displays a market forecast based on a chaos based model, that predicts the market intraday.
I have been able to chart the signal and display the market forward using drawline command.
Now I would like to compute standard TA Studies, like EMA, SMA, CCI, etc (all that are a function of the price.
How can I use the standard functions? I can creat an array and concatenate the Market Price, with the predicted price. But the studies seem to accept only the symbol as an input.
This is how the study looks like.
And this is the command I use to chart the market prediction.
for (var x=2; x<=Offset; x++){
drawLineRelative(x-1-Correction,aPrediction[x-1],x-Correction,aPrediction[x] ,PS_SOLID,3,Color.grey,"plot"+x);
}
return;
Thank you for your help.
DB
Comment