How can I re-instate QS Menus & Toolbars?
After QS appl. restart I lost all menus & Toolbars. I only have big QS Window - FullSCreen.
I can access menus by pressing ALT+Anycharacter and UP arrow. It is painful.
Any ideas how to get into default mode?
how can apply rules as buy or sell strategi? i want also indicate signal by arrow up/down ?
i also download NSE-SHORT SELLING OBJECT but it not working url problem
What do you mean by apply rules as buy or sell strategies?
To plot arrows on a chart, you can for example type the following formula (Right click on a chart then "Edit Formula"):
buyrule = cross(rsi(14), 50);
sellrule = cross(50, rsi(14));
PlotSymbol(buyrule, "", 1, 1, BelowLow, colorRed, colorRed, colorRed, PlotSymbolArrow);
PlotSymbol(sellrule, "", 1, 1, AboveHigh, colorRed, colorRed, colorRed, PlotSymbolArrow);