TS Code  [SOLVED]

Questions about MultiCharts and user contributed studies.
Guest

TS Code

Postby Guest » 09 Feb 2007

I try this simple code:
Inputs: PositionBasis(True), Amount(0);
If PositionBasis Then
SetStopPosition
Else
SetStopContract;
SetDollarTrailing(Amount);

And i try this simple code:
Inputs: PositionBasis(True), FloorAmnt(0), Amount(0);
If PositionBasis Then
SetStopPosition
Else
SetStopContract;
SetPercentTrailing(FloorAmnt, Amount);

But it does not work.
Am using the latest beta.
Can help me.

User avatar
Stanley Miller
Posts: 556
Joined: 26 Jul 2005
Has thanked: 3 times

  [SOLVED]

Postby Stanley Miller » 12 Feb 2007

Unfortunately SetPercentTrailing function is not supported yet, we'll add this in the future.


Return to “MultiCharts”