Can I create multiple panes so I can chart foreignsymbols in 1 AFL?

Hello,

How can I display multiple pane charts systematically without manually creating a plotforeign AFL and "insert linking" one by one?

I don't mind writing separate AFL per symbol but I can't seem to insert the AFL by multi-selecting. I can only do one at a time.

Thank you!

Read manual

How to insert a new indicator.

To display a new indicator in a separate chart pane just find the indicator in the Charts list (use Window -> Charts menu) and double-click on the indicator name.

https://www.amibroker.com/guide/h_dragdrop.html

In addition in AFL use ParamStr function

s = ParamStr("Ticker", "AMZN");

So you can change Symbol via Param Window instead of from AFL.

This topic was automatically closed 100 days after the last reply. New replies are no longer allowed.