Thanks but I was hoping someone could guide me through the steps. I hope I'm asking in the right place because I haven't received any responses yet. Thanks ahead to anyone who can lend me a hand. ~Tina
Hey Hi caligirl626,
Yeah its like that around here

There are a couple of ways to go about what you are trying to achieve, and the best way is the most complicated and I won't attempt that, but I'll run up the basic steps then do a complete 'all in one' Paintbar with (brackets) and short-cut coding, my skills are limited beyond the basics tho.
...the Basic Editor is straight forward and the GUI is good for compiling 'off the shelf' paint bars.
The trick is to identify what you're wanting to signal for; all combined indicators meet the signal requirements? or separate indicators meet their signal requirements? I'm assuming from your post that it's an all must meet signal situation...So you will be making Rules within one Paintbar ultimately.
First Up select a stock symbol and right click on it, and "Open Intra Day chart". Then right click the chart and set its "Frequency" to 1 minute. Save the chart As a Template ...name it after me if you like...

Then right click the chart select "Select Indicators" then select the Paintbar insert it top or bottom...Also pick all the indicators you desire...SMA, MACD, CCI, Slow Stochastic...
Edit the Paintbar and Add New...Name it after me if you like...

Standard math expressions: +, -, *, /, ^, MOD and DIV operators.
Logical operators: AND, OR, NOT so that you can use two or more expressions in one rule.
Hint: the indicators work by naming conventions:
Indicator.Main or Indicator.Signal
So a MACD is expressed like this:
MACD.Main, MACD.Signal and MACD.Histogram
Indicator numerical settings are defined by:
Indicator(x).Main and Indicator(x).Signal
Sometimes you will need to identify the individual Indicator where you have two of the same Indicators but different numerical settings:
This refers to the first indicator in the list:
MACD.Main or MACD.Signal
and the second as unique:
MACD(6).Main or MACD(6).Signal
Attempt to make one indicator Paintaber at a time, until you are comfortable with how the Basic Editor works.
Once you have played around with the Basic Editor you'll work it all out yourself...then go into the Advanced Editor to compile a bunch of rules from what you have learnt so far.
The Advanced Editor is where you start defining aspects of the indicator:
Back bars are expressed as:
Indicator(x).Main[X]
MACD(6).Main[1] or MACD(6).Signal[1]
or
MACD(6).Histogram[1] >=0
MACD(6).Histogram >=MACD(6).Histogram[1]
And a Main crossing its Signal from under like this:
if MACD(6).Main>=MACD(6).Signal and MACD(6).Main[1]<=MACD(6).Signal[1]
you can Cut Copy Paste in the Advanced Editor also...
Then post what you have up in the forum.
Feel free to PM me if you need more help.
Don't forget to save the chart.
Best of luck
