使用指南
Object Chart
NetTradeX PC
NetTradeX Android
NetTradeX iOS
NetTradeX Mobile
NetTradeX Advisors
-
User Guide for NTTX Advisors
- NetTradeX Advisors Terminal
-
Articles
-
NetTradeX Language: Introduction
- Language Basics
- Language Functions
-
Language System Objects
- Deal Management
- Order Management
- Indicators
- Object-Oriented Programming
-
DLL files
-
Object Account
-
Object Bars
-
Object Chart
-
Object datetime
-
Object History
-
Object file
-
Object Globals
-
Object Math
-
Object Symbols
-
Object System
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);}