- Katılım
- 23 Eki 2020
- Mesajlar
- 1,828
<nick99@poczta.onet.pl> wrote in message news:54eb.00000000.3b811c77@newsgate.onet.pl... witam, czy ktos z was orientuje sie moze jak mozna stworzyc formule Stoch.Slow w Metastocku? Jest tam ogolna formula Stochastica (tylko Fast), poszukujac w encyklopedii Parkietu i na EQUIS nic nie znalazlem, wielkie dzieki za pomoc, pozdrawiam wszystkich inwestorow, nick99 to jest formuła dla : Stochastic %K Per1:=Input("length of stoch",1,100,14); ((CLOSE - LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100 to jest formuła dla : Stochastic %d Per1:=Input("length of stoch",1,100,14); Per2:=Input("length of ma",1,100,3); Mov((((CLOSE-LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100),Per2,S) to jest formuła dla : Slow Stochastic %D Per1:=Input("length of stoch",1,100,14); Per2:=Input("length of ma1",1,100,3); Per3:=Input("length of ma2",1,100,3); Mov((Mov((((CLOSE-LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100),Per2,S)),Per3,S) Lucek |
|
Stochastic Oscillator - Custom II - 3 in 1 {Stochastic %K} Per1a:=Input("length of stoch %K",1,100,14); ((CLOSE - LLV(L,Per1a))/(HHV(H,Per1a)-LLV(L,Per1a)))*100; {Stochastic %d} Per1b:=Input("length of stoch %d",1,100,14); Per2b:=Input("length of ma",1,100,3); Mov((((CLOSE-LLV(L,Per1b))/(HHV(H,Per1b)-LLV(L,Per1b)))*100),Per2b,S); {Slow Stochastic %D} Per1c:=Input("length of stoch %D",1,100,14); Per2c:=Input("length of ma1",1,100,3); Per3c:=Input("length of ma2",1,100,3); Mov((Mov((((CLOSE-LLV(L,Per1c)) / (HHV(H,Per1c)-LLV(L,Per1c)))*100),Per2c,S)),Per3c,S); |
Source / From: |