Recent content by stiv

  1. S

    Easy Language

    inputs: price(close), avglen(10), avglen2(18), dis=displacement(2); vars: mov_avg1(0), mov_avg2(0); mov_avg1 = Average(price, avglen)[dis]; mov_avg2 = Average(price, avglen2); will be better?
  2. S

    Easy Language

    hi: I wrote in Easy Language Simple Moving Average system, but if i try to compile it on Open E Cry brokers i recived errror, bellow' Error Description: Reserved word: displacement i paste part of my system with line "displacement" inputs: price(close), avglen(10), avglen2(18)...
  3. S

    Easy Language problems

    I think that VARS have wrong formula
  4. S

    Easy Language problems

    Hi, i wrote formula in EL but in forst line after "vars" compilation show me error, can you show me my mistake? My formula bellow: vars: HH,LL,d; HH=maxlist(H,H[1],H[2],H[3]); LL=minlist(L,L[1],L[2],L[3]); d[0]=C; if C>HH[1] then d=LL; else if C<LL[1] then d=HH; else d=d[1]; if C crosses...
Top