Type/to search
Welcome to FMZ Quant Trading Platform
Programming Languages
JavaScript
TypeScript
Python
C++
MyLanguage
PINE Language
Blockly Visual Programming
Workflow
Key Security
Live Trading
Strategy Library
Docker
Deploy Docker
One-Click Docker Rental
Manual Deployment of Bot
Docker Operation Precautions
Global IP Address Specification
Command Line Parameters for Bot Program
Live Trading Data Migration
Docker Monitor
Exchange
Strategy Editor
Backtesting System
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

Push Settings Page, where you can enable message push notifications.

Push Settings

  • 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 URL http://abc.com/push.php?data={body} (only GET method is supported), and the push message will replace the {body} placeholder.

Pushing Messages in Strategies

  • JavaScript/TypeScript/Python/C++ Languages
    Use the Log() 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.