Welcome to FMZ Quant Trading Platform
Programming Languages
Key Security
Live Trading
Strategy Library
Docker
Exchange
Strategy Editor
Backtesting System
Backtesting System Modes
Impact of Backtest Data Granularity on Backtesting
Backtesting System Supports Multiple Programming Languages
Exchanges Supported by Backtesting System
Backtest System Parameter Optimization
Save Backtest Settings
Custom Data Source
Local Backtesting Engine
Backtest Page Shortcuts
Backtest Data Download
Backtest System Sharpe Ratio Algorithm
Strategy Entry Functions
Strategy Framework and API Functions
Template Library
Strategy Parameters
Interactive Controls
Options Trading
C++ Strategy Writing Guide
JavaScript Strategy Writing Guide
Web3
Built-in Libraries
Extended API Interface
MCP Service
Trading Terminal
Data Explorer
Alpha Factor Analysis Tool
General Protocol
Debugging Tool
Remote Editing
Import and Export of Complete Strategies
Multi-language Support
Live Trading and Strategy Grouping
Live Trading Display
Strategy Sharing and Renting
Live Trading Message Push
Common Causes of Live Trading Errors and Abnormal Exits
Exchange-Specific Notes
Live Trading Message Push
Push Settings Page, where you can enable message push notifications.

- Mobile App
After enabling mobile App push, push messages sent by the live trading program will be delivered to the FMZ Quant mobile App. - Email
Enabling email push requires email verification. Once verified, you can receive push messages sent by the live trading program. - WebHook
Enable WebHook push, for example, set the push URL to:http://abc.com/push.php?data={body}.
When the live trading program sends a push message, it will send a request to the configured URLhttp://abc.com/push.php?data={body}(onlyGETmethod is supported), and the push message will replace the{body}placeholder.
Pushing Messages in Strategies
- JavaScript/TypeScript/Python/C++ Languages
Use theLog()function and other functions that output log information in the log area in your strategy code, such as:exchange.CreateOrder(),exchange.CancelOrder(), etc.
Pass an additional parameter"@"to these functions (i.e., add an additional parameter besides the required parameters), for example:Log("This is a push message", "@"), and this log message will be pushed. The platform will push messages according to the "Push Settings". - PINE Language/My Language
In the "Trading Class Library" parameters integrated with PINE Language/My Language strategies, you can enable trading log push. After a trading action is triggered, push notifications will be sent automatically. - Blockly Visual Programming
Select the Message Push module in the "Tools" section to push specified information.
Message push has frequency limits. The specific limit rules are as follows: within a 20-second cycle of a live trading instance, only the last push message will be retained and pushed, while other messages will be filtered and not pushed.