I use the Slow D Stochstic to trade EuroFX alot, but it doesnt seem to work well on my E-signal charts. It flattens out quite a bit. Someone thought this might be due to low volume, but it works on the Russell e-mini, for example, which has almost no volume overnight. Euro FX is such a heavily traded instrument, I'm sure a simple Slow D Stochastic should work on it. TIA
Announcement
Collapse
No announcement yet.
Slow D Stochastic and Euro FX
Collapse
X
-
Hello mikem144,
Please post a chart image of what you're seeing. Also, post the EFS file that you are using and I'll look into what the problem might be.Jason K.
Project Manager
eSignal - an Interactive Data company
EFS KnowledgeBase
JavaScript for EFS Video Series
EFS Beginner Tutorial Series
EFS Glossary
Custom EFS Development Policy
New User Orientation
-
I've attached snapshots of today's charts for Euro FX (6E #F), 1minute time frame. The stochastic study is from E-signal's Basic Stochastic Study. The parameters are 6,5,1, with 80-20 overbought/oversold lines. It is overlaid on top of price. (This, by the way, does not affect the outcome of the stochastic---it will flatten out if it is in its own subchart on its own). The first set of snapshots is from E-signal charts, showing the stochastic flattening out periodically throuought the day. The second set of snapshots show the stochastics are from the Fibonacci Trader charting program and are plotted correctly.
Comment
-
Hello mikem144,
Looks like it's a decimal precision error in our Stochastic study under the Basic Studies. I'll report this to our Development team. The EFS calculations appear to be working fine however. Try the \Formulas\Library\StochasticD.efs or the StochasticOf_Montage.efs.
Jason K.
Project Manager
eSignal - an Interactive Data company
EFS KnowledgeBase
JavaScript for EFS Video Series
EFS Beginner Tutorial Series
EFS Glossary
Custom EFS Development Policy
New User Orientation
Comment
-
Hello mikem144,
Displaying indicators over the price bars is not possible currently. This has been requested before, but feel free to submit another request for this to [email protected].Jason K.
Project Manager
eSignal - an Interactive Data company
EFS KnowledgeBase
JavaScript for EFS Video Series
EFS Beginner Tutorial Series
EFS Glossary
Custom EFS Development Policy
New User Orientation
Comment
-
Changes to Stochasticof_Montage.efs
I would like to make some changes to the default parameters of this file and save it as a new file for use. When I do this and load the new file, it doesnt change the default params. Any suggestions? TIA
Comment
-
Hello mikem144,
In the preMain function you should see some .setDefault() lines. Are your changing those values?Jason K.
Project Manager
eSignal - an Interactive Data company
EFS KnowledgeBase
JavaScript for EFS Video Series
EFS Beginner Tutorial Series
EFS Glossary
Custom EFS Development Policy
New User Orientation
Comment
-
Hello mikem144,
The easiest thing to do is change the return for the %K line to a string by adding +"". The return section (assuming you're using StochasticOf_Montage.efs) should look like this at the end of main().
PHP Code:if(MAType=="Exponential"){
if(aValue[LengthD-1] != null) vEMA = EMA(LengthD, aValue);
return new Array (sum+"",vEMA);
}else{
return new Array (sum+"",vSMA);
}
Jason K.
Project Manager
eSignal - an Interactive Data company
EFS KnowledgeBase
JavaScript for EFS Video Series
EFS Beginner Tutorial Series
EFS Glossary
Custom EFS Development Policy
New User Orientation
Comment
Comment