Is there a way to change the font size of the text shown on the chart (open, high, low, close, etc.)? Couldn't find it in the options and searching this forum didn't turn up an answer.
Thanks.
- Right click on a chart
- Select "Chart Settings"
- In the new control, update the "Date/OHLC Size" field
When done, you can set the current chart as default layout by right clicking again on the chart then selecting "Layout -> Set current layout as default".
One follow-up question. Is there a way to show certain indicator values at a given bar on the chart even if those indicators are not plotted on the chart? I've been using AmiBroker and there are a number of graphics functions that allow you to calculate an indicator value and plot it anywhere on the primary chart pane even if the indicator isn't shown, and you can change the font size, color, etc. Is there a similar set of commands in QuantShare?
Yes, you can do that. Here is an example:
a = round(sma(10), 2);
b = round(sma(30), 2);
c = "SMA10: ".a."\nSMA30: ".b;
PrintChart(c, "", BottomLeft, colorWhite, colorTransparent, colorBlack, 255);
UpdatePrintSettings("Size", 1, 20);
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.