Tack Rickard för svaret om pivot.
Är det ngn som provat på den här varianten variant av Stochastic som kallas Digital Stochastic.
Känns som det krävs lite andra kunskaper för att skriva om från Tradestation. vilket jag inte har. Har nog problem med att lära mig skriva script för AT
Fick det mailat från en tysk guru som heter Philipp Kahler. Så om någon redan översatt den eller vet hur man gör vore det kul att testa. Den jobbar i intervallet -1 till 1.
Jag skall kolla lite mer hur man tolkar den.
Dear Ola,
if you look at the tradestation code you might get an idea how to do it wit AutoStockTrader:
{*******************************************************************
Description : This Indicator plots a digital Stochastic
Provided By : kahler / quanttrader.at (c) Copyright 2008
********************************************************************}
Input: Length(5), KAdjust(3), DAdjust(3);
Variables: KAdjusted(0), DAdjusted(0),summ(0);
KAdjusted = SlowKClassic(KAdjust, Length);
DAdjusted = SlowDClassic(DAdjust, Length);
{ Digitalisierung }
if (22*KAdjusted+8*DAdjusted)/30 >50 then summ=1;
if (22*KAdjusted+8*DAdjusted)/30 <50 then summ=-1;
IF CurrentBar > Length Then Plot1(xaverage(summ,Length), "Stoch. Dig.");
**
First the SlowK and SlowD is calculated with the "normal" stochastic function. The first step of the digital stochastic is created with the two if ... then .. summ=.. lines.
Summ then is a line oszillating between -1 and 1. If you apply an exponential moving average to this variable (xaverage(summ,length)) then you get the digital stochastic as described in the article.
good luck,
Philipp
Är det ngn som provat på den här varianten variant av Stochastic som kallas Digital Stochastic.
Känns som det krävs lite andra kunskaper för att skriva om från Tradestation. vilket jag inte har. Har nog problem med att lära mig skriva script för AT
Fick det mailat från en tysk guru som heter Philipp Kahler. Så om någon redan översatt den eller vet hur man gör vore det kul att testa. Den jobbar i intervallet -1 till 1.
Jag skall kolla lite mer hur man tolkar den.
Dear Ola,
if you look at the tradestation code you might get an idea how to do it wit AutoStockTrader:
{*******************************************************************
Description : This Indicator plots a digital Stochastic
Provided By : kahler / quanttrader.at (c) Copyright 2008
********************************************************************}
Input: Length(5), KAdjust(3), DAdjust(3);
Variables: KAdjusted(0), DAdjusted(0),summ(0);
KAdjusted = SlowKClassic(KAdjust, Length);
DAdjusted = SlowDClassic(DAdjust, Length);
{ Digitalisierung }
if (22*KAdjusted+8*DAdjusted)/30 >50 then summ=1;
if (22*KAdjusted+8*DAdjusted)/30 <50 then summ=-1;
IF CurrentBar > Length Then Plot1(xaverage(summ,Length), "Stoch. Dig.");
**
First the SlowK and SlowD is calculated with the "normal" stochastic function. The first step of the digital stochastic is created with the two if ... then .. summ=.. lines.
Summ then is a line oszillating between -1 and 1. If you apply an exponential moving average to this variable (xaverage(summ,length)) then you get the digital stochastic as described in the article.
good luck,
Philipp
Comment