Mark, Here is an example with Price and RSI at the bottom of the pane ..Is this what you want to do ?
Anthony Plot(C,"Price",colorBlack,styleCandle); indicator="RSI"; R = RSI(); PH = 20; // Height of RSI in percent pane height RSIHeight = 100/PH*100; GraphXSpace = 5*PH; Plot(70,"",colorBlack,styleLine|styleOwnScale,0,RSIHeight); Plot(R,"",4,1|styleOwnScale,0,RSIHeight); Plot(30,"",colorBlack,styleOwnScale|styleLine,0,RSIHeight); Plot(100,"",colorLightGrey,styleArea|styleOwnScale|styleNoLabel,0,RSIHeight); ----- Original Message ----- From: MarkK To: [email protected] Sent: Tuesday, September 29, 2009 1:40 PM Subject: [amibroker] Multiple Charts in AFT in one Pane? Not sure if I have the correct subject name What I would like to do I have a Three AFL's that are open and produce 3 different charts on one tab What I would like to do is combine all three into one AFL though I do not want all the information to be combined 1) Pricing and Liner Regression Lines 2) Stochastic Lines 3) RSi lines Would like to have all three in one AFL yet the chart on the tab page to look like three different charts even though it would be one AFL and one chart Can this be done? if so can someone show me how? Thank you MarkK
