Jump to content

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

Recommended Posts

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

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;

  • 1 year later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

×
×
  • Create New...