Ah - I think I figured it out.
So, I would create One paintbar - say we call it "buy signal"
Then I would create ONE rule for that paintbar, make it a complex rule with something like:
if MACD(12,26,9) > 0 and
bar close > sma(10) set color to Green
And I could add as many rules to this as I wanted.
Got it. thanks!
Give an example to discuss.
The paintbars use logical operators within EACH rule.."and", "or", etc...SO a paintbar RULE would "signal" if all logical operations within the rule were true and you used "and" to compare each logical operation WITHIN that rule.
The rules are executed in descending order...so...each subsequent rule is executed from the top down, in order, and will overide the previous rule if there is a coincedence of factors...
The individual RULES that make up a paintbar are NOT compared by logical operators...they just trigger in descending order.
You would need to combine your formulas within ONE rule to compare using the logical operators...
You can then use multiple rules creatively to expand the complexity of the paintbar.