Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的任务:计算最高价和最低价之间的每日差价,并在控制台中打印结果。
到目前为止,我只能成功地做到:
void OnTick() { //--- SymbolInfoTick("EURUSD", tickInfo); Print(tickInfo.last); }
任何人都可以为这个简单的任务提供示例代码吗?
谢谢!
如果您使用的是数据库,请尝试这个抽象的 sql 查询“select subract(Max_price, Min_price) from table_name group by date”。