.eld indicator conversion

Questions about MultiCharts .NET and user contributed studies.
O66
Posts: 146
Joined: 28 Nov 2006
Location: Netherlands
Has thanked: 2 times
Been thanked: 3 times

.eld indicator conversion

Postby O66 » 05 Jan 2017

Hi,

I'm searching for someone that can help me with converting this indicator (2 x stochastics and smoothed) to MC .Net

{
***** Study name: 'EFV Stoch'
}
{ ***** DLLs Section ***** }
{ ***** INPUTs Section *****}
INputs: PriceH(HIGH), PriceL(LOW), PriceC(CLOSE);
{ ***** VARs Section ***** }
VAriables: Var1(0.0), Var2(0.0), Var3(0.0), Var4(0.0);
VAriables: Var5(0.0), Var6(0.0), Var7(0.0), Var8(0.0);
VAriables: Var9(7.0), Var10(3.0), Var11(3.0), Var12(21.0);
VAriables: Var13(10.0), Var14(4.0), Var15(2.0);
VAriables: Var16(20.0), Var17(80.0), Var18(0.0);
VAriables: Var19(0.0);
{ ***** ARRAYs Section *****}
{ ***** CODE Section ***** }
#EVENTS OnDestroy = EasyLanguageRtlOnDestroy ;
#END ;
Var18 = Stochastic (PriceH, PriceL, PriceC, Var9, Var10, Var11, Var15, Var1, Var2, Var3, Var4) ;
Var19 = Stochastic (PriceH, PriceL, PriceC, Var12, Var13, Var14, Var15, Var5, Var6, Var7, Var8) ;
PLOT1 (Var4, "SlowDa") ;
PLOT2 (Var8, "SlowDb") ;
PLOT3 (Var17, "OverBot") ;
PLOT4 (Var16, "OverSld") ;
if Var4 < Var4[1.0] then SETPLOTCOLOR (1.0, red) ;
if Var8 < Var8[1.0] then SETPLOTCOLOR (2.0, blue) ;
{
* 2004-2010
*
}

Thanks!

User avatar
Henry MultiСharts
Posts: 9165
Joined: 25 Aug 2011
Has thanked: 1264 times
Been thanked: 2957 times

Re: .eld indicator conversion

Postby Henry MultiСharts » 06 Jan 2017

Hello O66,

Please contact us directly if you are interested in custom programming services.


Return to “MultiCharts .NET”