Click here to Login




Same chart, different symbols

Updated on 2009-06-15





Charts as you know are composed of panes, where each pane contains its own settings and formulas.
You can make a pane plot quotes for completely different symbols, it is very easy to do so.
The following formula is the answer:

c = Ticker('ABCP', close, LastData);
o = Ticker('ABCP', open, LastData);
h = Ticker('ABCP', high, LastData);
l = Ticker('ABCP', low, LastData);
PlotCandleStick1(o, h, l, c, 'ABCP', colorRed, StyleSymbolNone);


A chart that look like the following one will appears.




Scripting

Now let us say you want to automate a little bit this process so that with one click you create a pane in the selected chart then plot another symbol quotes data.
You can do this using the 'Script Editor'. Open it using 'Tools->Script Editor', type in the following formula; we will explain later how it works.

var chart : Chart = Charts.GetSelectedChart();
var symbol : String = chart.SymbolName;

var formula : System.Text.StringBuilder = new System.Text.StringBuilder("");
formula.AppendLine("c = Ticker('" + symbol + "', close, LastData);");
formula.AppendLine("o = Ticker('" + symbol + "', open, LastData);");
formula.AppendLine("h = Ticker('" + symbol + "', high, LastData);");
formula.AppendLine("l = Ticker('" + symbol + "', low, LastData);");
formula.AppendLine("PlotCandleStick1(o, h, l, c, '" + symbol + "', colorRed, StyleSymbolNone);");

if(chart.Panes.Length == 1)
{
chart.AddNewPane("Another Symbol", formula, 0);
}
else
{
chart.SetFormula(chart.Panes.Length - 1, "Another Symbol", formula);
}


Now for the explanations, in the first line we get the selected chart object.
In the second line we get the symbol name of this chart.
We then create the formula, and finally we check how many panes the current chart contains. In the first case where the chart has only one pane, we create another pane and add the previously created formula to it; in the second case, we just update the formula of the last pane.

Bookmark

Right click on the bookmark panel, select add shortcut, select 'Script' then select the previously created script.
Now each time you want to execute this script, just double click on it in the bookmark panel.




Test

To test our script, select a chart and choose a symbol, click on our shortcut to have the chart create another pane with the current symbol quotes plotted. Now select another symbol; the first pane data will change while the second pane will remains the same.

With a little understanding on how scripts work, you can create and automate almost everything in your QuantShare application.
If you are interested in understanding how to implement advanced scripts then maybe a better understanding of Jscript.Net is necessary. Just do a search with Google; there are plenty of resources available for free.











no comments (Log in)

QuantShare Blog
QuantShare
Search Posts




QuantShare
Recent Posts

Create Graphs using the Grid Tool
Posted 1233 days ago

Profile Graphs
Posted 1338 days ago

QuantShare
Previous Posts

Same chart, different symbols
Posted 5422 days ago

Composite Indicators
Posted 5425 days ago

Example of advanced rule
Posted 5427 days ago

Beta release
Posted 5429 days ago


More Posts

Back







QuantShare
Product
QuantShare
Features
Create an account
Affiliate Program
Support
Contact Us
Trading Forum
How-to Lessons
Manual
Company
About Us
Privacy
Terms of Use

Copyright © 2024 QuantShare.com
Social Media
Follow us on Facebook
Twitter Follow us on Twitter
Google+
Follow us on Google+
RSS Trading Items



Trading financial instruments, including foreign exchange on margin, carries a high level of risk and is not suitable for all investors. The high degree of leverage can work against you as well as for you. Before deciding to invest in financial instruments or foreign exchange you should carefully consider your investment objectives, level of experience, and risk appetite. The possibility exists that you could sustain a loss of some or all of your initial investment and therefore you should not invest money that you cannot afford to lose. You should be aware of all the risks associated with trading and seek advice from an independent financial advisor if you have any doubts.