Sell low of reversal bar

Questions about MultiCharts and user contributed studies.
David Caliano
Posts: 34
Joined: 25 Aug 2007
Been thanked: 1 time

Sell low of reversal bar

Postby David Caliano » 23 Jun 2010

Code: Select all

[IntrabarOrderGeneration = false]

inputs: Length( 1 ) ;

condition1 = High > Highest( High, Length )[1] and Close < Close[1] ;

if condition1 then

Sell Short ( "KeyRevSE" ) next bar at market ;
This is the code for Key Reversal SE. Instead of next bar at market, I want
it to sell the break of the low of the reversal bar down. How do I write this?

User avatar
TJ
Posts: 7742
Joined: 29 Aug 2006
Location: Global Citizen
Has thanked: 1033 times
Been thanked: 2222 times

Re: Sell low of reversal bar

Postby TJ » 23 Jun 2010

...How do I write this?
...look up IntrabarOrderGeneration.

There is a sample code in the manual.


Return to “MultiCharts”