User Guide
Object Chart
NetTradeX PC
NetTradeX Android
NetTradeX iOS
NetTradeX Mobile
NetTradeX Advisors
Object Chart
Chart Properties
Chart object provides access to the chart settings of the chart with the attached script.
string Symbol
- chart symbolint Interval
- chart intervalint Digits
- symbol accuracydouble Point
- pip valueint Bars
- number of bars for the current chart
int Initialize() {return(0);} int Run() { System.Print("Symbol = "+Chart.Symbol); System.Print("Interval = "+Chart.Interval); System.Print("Digits = "+Chart.Digits); System.Print("Point = "+Chart.Point); return(0); } int DeInitialize(){return(0);}