RENKO BAR and CONDITION RED or green

Questions about MultiCharts and user contributed studies.
turbofib
Posts: 213
Joined: 11 May 2013
Has thanked: 67 times
Been thanked: 1 time

RENKO BAR and CONDITION RED or green

Postby turbofib » 20 Jun 2013

how do I set a program line for which if the renko is green condition=1

and if renko is red condition=2
Attachments
Renko.png
(115.79 KiB) Downloaded 335 times

User avatar
MAtricks
Posts: 789
Joined: 09 Apr 2012
Has thanked: 286 times
Been thanked: 288 times

Re: RENKO BAR and CONDITION RED or green

Postby MAtricks » 20 Jun 2013

Code: Select all

Variables:
Green( false ),
Red( false ) ;

if C crosses over C[1] then
Green = true ;
if C crosses under C[1] then
Red = true ;

turbofib
Posts: 213
Joined: 11 May 2013
Has thanked: 67 times
Been thanked: 1 time

Re: RENKO BAR and CONDITION RED or green

Postby turbofib » 21 Jun 2013

thanks


Return to “MultiCharts”