Then
 

Nom: Then

Définition: Signale l’action a accomplir si le test est vrai dans une construction “IF”

Usage: if (test) then ... else ... endif

Objectif:
  • Fait partie d’une construction “If”

Note:
  • Ne retourne rien

Exemples:
  • OBV:
  • leVol = reverse(volume)
  • leClose = reverse(close)
  • leClose1 = shiftedRight(leClose,1)
  • test = leClose < leClose1
  • accumulate(obv0,0)
  • for(0,histoRange)
  • if(var(test,0)) then
  • dummyPlus = var(leVol,0) + var(obv0,0)
  • accumulate(obv0,dummyPlus)
  • else
  • dummyMoins = 0 - var(leVol,0) + var(obv0,0)
  • accumulate(obv0,dummyMoins)
  • endif
  • endfor
  • notifyresult(reverse(obv0))