Jump to content

REQ : ASCTrend 3.51 for Tradestation 8.X


wang4871

Recommended Posts

  • 3 weeks later...
  • 3 weeks later...
  • 2 weeks later...
  • 3 weeks later...
  • 2 weeks later...
  • 1 year later...
  • 2 weeks later...

Asctrend clone.

 

This is similar to asctrend

 

Create an indicator and compile in multicharts or tradestation.

 

Uptrend:

 

[LegacyColorValue = TRUE];

 

Vars: FastK2(0), BuyZ(35), SellZ(65);

 

FastK2 = FastK(9);

 

Condition3 = FastK2 < BuyZ;

Condition4 = FastK2 > SellZ;

 

If Condition4 then begin

Plot1(High, "PBHigh");

Plot2(Low, "PBLow");

If CheckAlert then Alert = True;

end;

 

Downtrend:

 

[LegacyColorValue = TRUE];

 

Vars: FastK2(0), BuyZ(35), SellZ(65);

 

FastK2 = FastK(9);

 

Condition3 = FastK2 < BuyZ;

Condition4 = FastK2 > SellZ;

 

If Condition3 then begin

Plot1(High, "PBHigh");

Plot2(Low, "PBLow");

If CheckAlert then Alert = True;

end;

Link to comment
Share on other sites

  • 1 year later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...