Navigate to your broker's login page. For example:
https://platform.aquafunded.com/login
On the login page, right-click and select "View Page Source" or "Inspect."
Look for the BrokerID
parameter. In the example, it is located in the JavaScript configuration:
brokerId: '1'
Result: In this case, BrokerID = 1
.
Log in to your account at AlgoWay.trade.
1
.Example URL:
https://mtr-platform.fundingpips.com
1
.Open the chart with your strategy in TradingView.
Right-click on the chart and select Add Alert or click the bell icon.
https://algoway.co/28eb4e13-a7fe-478c-813e-8523d4dc6939
{
"platform_name": "matchtrader",
"ticker": "{{ticker}}",
"order_contracts": "{{strategy.order.contracts}}",
"order_action": "{{strategy.market_position}}"
}
If you want to use an alert with conditions like price crossing, you need to modify the JSON and specify the actual values manually.
Example JSON for Price Crossing:
{
"platform_name": "matchtrader",
"ticker": "{{ticker}}",
"order_contracts": "1",
"order_action": "buy"
}
order_action
field, you can use the following values:
buy
sell
short
long
flat
(to close a position)Review the settings and click Create to finalize.
Now the system is configured to handle alerts for strategies or individual conditions with manual JSON adjustments.