Login Page - Create Account

Support Board


Date/Time: Sun, 28 Apr 2024 11:24:08 +0000



[Programming Help] - REQ:Double Stochastic code

View Count: 1072

[2018-09-02 10:35:04]
franmadrid - Posts: 24
Hi guys, I am looking for a double stochastic code. Exactly I am working in Ninja and Multichart and I want to move my double stochastic to Sierra. But in Sierra the D.Stochastic is very diferent , meaby the calculation is diferent. Anyone can help to me get DS from Ninja or MC to Sierra. ??

I leave you a snapshot to compare the 3 software. (the snapshot have 3diferent period 5,18 and 70 over ema75 in MC and ninja . In Sierra I posted only the 18 (blueone))

The MC (easy language) calculation is this:

[LegacyColorValue = true];

{_DStoc: Double Stochastic}

Inputs:
DStLen(NumericSimple)
;

Vars:
Num(0),
Denom(0),
Ratio(0),
PctK(0),
DNum(0),
DDenom(0),
DRatio(0),
DPctK(0)
;

{Stoc}
Num=C-_Lst(L,DStLen);
Denom=_Hst(H,DStLen)-_Lst(L,DStLen);
Ratio=IFF(Denom>0,(Num/Denom)*100,Ratio[1]);
PctK=IFF(CurrentBar=1,Ratio,PctK[1]+(.5*(Ratio-PctK[1])));

{DStoc}
DNum=PctK-_Lst(PctK,DStLen);
DDenom=_Hst(PctK,DStLen)-_Lst(PctK,DStLen);
DRatio=IFF(DDenom>0,(DNum/DDenom)*100,DRatio[1]);
DPctK=IFF(CurrentBar=1,DRatio,DPctK[1]+(.5*(DRatio-DPctK[1])));

_DStoc=DPctK;
imagesierra_double_stochastic_vs_ninja_MC.jpg / V - Attached On 2018-09-02 10:33:12 UTC - Size: 1.38 MB - 315 views
[2018-09-03 03:42:46]
Sierra Chart Engineering - Posts: 104368
We will look this over.
Sierra Chart Support - Engineering Level

Your definitive source for support. Other responses are from users. Try to keep your questions brief and to the point. Be aware of support policy:
https://www.sierrachart.com/index.php?l=PostingInformation.php#GeneralInformation

For the most reliable, advanced, and zero cost futures order routing, *change* to the Teton service:
Sierra Chart Teton Futures Order Routing
[2018-09-03 09:52:46]
franmadrid - Posts: 24
thanks I leave you a template to use in Ninja trade with all setup.
Date Time Of Last Edit: 2018-09-04 04:32:37
[2018-09-04 04:32:21]
Sierra Chart Engineering - Posts: 104368
We do not need that. We are deleting the file.
Sierra Chart Support - Engineering Level

Your definitive source for support. Other responses are from users. Try to keep your questions brief and to the point. Be aware of support policy:
https://www.sierrachart.com/index.php?l=PostingInformation.php#GeneralInformation

For the most reliable, advanced, and zero cost futures order routing, *change* to the Teton service:
Sierra Chart Teton Futures Order Routing
[2018-09-24 22:15:46]
Sierra Chart Engineering - Posts: 104368
This is what we determined:

The formulas that the user has provided in EasyLanguage are just flat-out wrong. Sierra Chart is using the correct ones. We can add the study, but there would be a cost associated with this.
Sierra Chart Support - Engineering Level

Your definitive source for support. Other responses are from users. Try to keep your questions brief and to the point. Be aware of support policy:
https://www.sierrachart.com/index.php?l=PostingInformation.php#GeneralInformation

For the most reliable, advanced, and zero cost futures order routing, *change* to the Teton service:
Sierra Chart Teton Futures Order Routing

To post a message in this thread, you need to log in with your Sierra Chart account:

Login

Login Page - Create Account