Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

Disco Scottie

Help with Creating a 9/30 Crossover Paintbar Indicator

Recommended Posts

I have no coding experience with TradeStation, so I'm not sure if I can do this. I'd like to create a paintbar indicator that will change candle colors when the 9ema crosses the 30wma. Blue when the 9ema crosses above the 30wma, and red when the reverse occurs. Is it possible to do, and if so how would I go about getting started to figure it out?

Share this post


Link to post
Share on other sites

If {yourMA1} > {yourMA2} then PlotPB(H,L,O,C,"Long",Blue) else PlotPB(H,L,O,C,"Short",Red);

 

This eats up Plot1-4, so if you want to plot the MAs from the same indicator code you'll have to start with Plot5({yourMA},"MA");

 

I haven't used TS in ages, but back in the day it would only allow 4 plots per indicator. I'm assuming they've gotten beyond this by now.

Edited by chop51
weird formatting without the [code] tags

Share this post


Link to post
Share on other sites

TS has one built in on the platform

Look for under paintbar studies.

You will see paint bar study MA Avg crossover.

Just plot and change the lengths of the MA to what you like

Share this post


Link to post
Share on other sites

Hi Disco,

pgain is correct,

 

If you still find difficulties in finding the code, here it is.. just copy and paste it into a new paintbar.

 

inputs: 
Price( Close ), 
FastLength( 7 ), 
SlowLength( 14 ), 
UpColor( Cyan ), 
DnColor( Blue ) ;

variables: 
FastAvg( 0 ), 
SlowAvg( 0 ) ;

FastAvg = Average( Price, FastLength ) ;
SlowAvg = Average( Price, SlowLength ) ;

if FastAvg > SlowAvg then 
begin
PlotPaintBar( High, Low, "MACross", UpColor ) ;
Alert( "FastAvg above SlowAvg" ) ;
end
else if FastAvg < SlowAvg then
begin
PlotPaintBar( High, Low, "MACross", DnColor ) ;
Alert( "FastAvg below SlowAvg" ) ;
end
else
NoPlot( 1 ) ; { unpaint the bar }

Looking forward to help you to achieve your trading Goals ..

 

Good Luck,

Easytrader_I.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

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...

Important Information

By using this site, you agree to our Terms of Use.