π€ New AlgoWay Partnership
We have started a partnership with Prop Firm Pine Scripts, a company specializing in Pine Script strategies for TradingView.
If any AlgoWay user needs a ready-made strategy or a custom strategy based on their own trading rules, this is now another option worth considering:
https://propfirmpinescripts.com/
This announcement is not a recommendation or an offer to purchase any particular product. We are simply informing the AlgoWay community about an additional option available to those looking for a strategy they can later automate.
We have started a partnership with Prop Firm Pine Scripts, a company specializing in Pine Script strategies for TradingView.
If any AlgoWay user needs a ready-made strategy or a custom strategy based on their own trading rules, this is now another option worth considering:
https://propfirmpinescripts.com/
This announcement is not a recommendation or an offer to purchase any particular product. We are simply informing the AlgoWay community about an additional option available to those looking for a strategy they can later automate.
Prop Firm Pine Scripts
Pine Script Strategies for Prop Firm Evaluations
Automated Pine Script strategies built to pass FTMO, Apex, Topstep, and MyFundedFutures evaluations. From $24/mo.
π AlgoWay MT5 EA v2.15 is now available
This update improves how Stop Loss and Take Profit levels are handled in MetaTrader 5.
A new SL/TP reference option has been added, allowing levels to be calculated from the actual trade entry price. This can provide more consistent SL/TP distances, especially on instruments with wider spreads.
We have also improved reliability when opening multiple positions in Hedge mode, so each new trade is matched and managed more accurately.
The existing SL/TP behavior remains the default, so current setups will continue working as before. Users who prefer entry-price-based SL/TP calculations can enable the new option in the EA settings.
Version: 2.15 https://algoway.trade/downloads/AlgoWay_WS/MQL5/Experts/AlgoWayWS-MT5.ex5
This update improves how Stop Loss and Take Profit levels are handled in MetaTrader 5.
A new SL/TP reference option has been added, allowing levels to be calculated from the actual trade entry price. This can provide more consistent SL/TP distances, especially on instruments with wider spreads.
We have also improved reliability when opening multiple positions in Hedge mode, so each new trade is matched and managed more accurately.
The existing SL/TP behavior remains the default, so current setups will continue working as before. Users who prefer entry-price-based SL/TP calculations can enable the new option in the EA settings.
Version: 2.15 https://algoway.trade/downloads/AlgoWay_WS/MQL5/Experts/AlgoWayWS-MT5.ex5
β€1
π cTrader OpenAPI Infrastructure Update
We have replaced the underlying cTrader OpenAPI transport layer with a new direct WebSocket implementation. This change is intended to eliminate the intermittent connection and
Initial production tests are very encouraging, with cTrader OpenAPI requests now completing in approximately 0.5-1 second in normal conditions. If performance remains stable, this means AlgoWayβs cTrader OpenAPI execution speed is now comparable to our cTrader FIX integration - while retaining the broader functionality available through OpenAPI.
As this is a major infrastructure change, we ask cTrader users to monitor their trades more closely over the next few days and report any unusual behaviour or failed executions to the AlgoWay administrator/support team as soon as possible.
We will continue monitoring the new transport closely.
We have replaced the underlying cTrader OpenAPI transport layer with a new direct WebSocket implementation. This change is intended to eliminate the intermittent connection and
Deferred errors some users experienced with the previous transport.Initial production tests are very encouraging, with cTrader OpenAPI requests now completing in approximately 0.5-1 second in normal conditions. If performance remains stable, this means AlgoWayβs cTrader OpenAPI execution speed is now comparable to our cTrader FIX integration - while retaining the broader functionality available through OpenAPI.
As this is a major infrastructure change, we ask cTrader users to monitor their trades more closely over the next few days and report any unusual behaviour or failed executions to the AlgoWay administrator/support team as soon as possible.
We will continue monitoring the new transport closely.
β οΈ Important MT5 EA Update
Please update your AlgoWay MT5 EA to the latest version as soon as possible, preferably before your next trading session.
We fixed an edge case in Reverse/Netting mode when multiple positions for the same symbol are open simultaneously. Under specific conditions, the previous version could process more position volume than intended during a reversal.
The issue has been fixed in the latest patch. We recommend that all MT5 users update their EA.
Version: 2.15c https://algoway.trade/downloads/AlgoWay_WS/MQL5/Experts/AlgoWayWS-MT5.ex5
Please update your AlgoWay MT5 EA to the latest version as soon as possible, preferably before your next trading session.
We fixed an edge case in Reverse/Netting mode when multiple positions for the same symbol are open simultaneously. Under specific conditions, the previous version could process more position volume than intended during a reversal.
The issue has been fixed in the latest patch. We recommend that all MT5 users update their EA.
Version: 2.15c https://algoway.trade/downloads/AlgoWay_WS/MQL5/Experts/AlgoWayWS-MT5.ex5
π₯ AlgoWay has received official TradeLocker Developer Status.
According to TradeLocker, developer access provides less restrictive API limits for integrations working with multiple accounts, which means the
At the same time, we optimized our TradeLocker execution flow and removed unnecessary delays. As a result, position opening is now around 0.5 seconds faster on average, depending on the broker and its TradeLocker infrastructure.
Fewer API restrictions, lower latency, faster TradeLocker execution.
According to TradeLocker, developer access provides less restrictive API limits for integrations working with multiple accounts, which means the
429 Too Many Requests issue should no longer affect AlgoWay under normal operation.At the same time, we optimized our TradeLocker execution flow and removed unnecessary delays. As a result, position opening is now around 0.5 seconds faster on average, depending on the broker and its TradeLocker infrastructure.
Fewer API restrictions, lower latency, faster TradeLocker execution.
π2
π AlgoWay now supports automatic position sizing based on a percentage of account equity.
A new JSON parameter is available:
When it is used,
Example:
This means a maximum risk of 1% of account equity if the Stop Loss is reached.
For risk-based sizing, the signal must contain an entry
For now, this feature is available only for TradeLocker. We will run additional real-world tests before gradually introducing risk-based position sizing for other supported platforms.
A new JSON parameter is available:
"order_size_type": "risk_percent"When it is used,
order_contracts represents the percentage of equity you want to risk on the trade rather than a fixed lot size. AlgoWay calculates the position size automatically from account equity and the distance to the Stop Loss.Example:
{"platform_name":"tradelocker","ticker":"EURUSD","order_action":"buy","order_contracts":1,"order_size_type":"risk_percent","price":1.17000,"sl_price":1.16500}This means a maximum risk of 1% of account equity if the Stop Loss is reached.
For risk-based sizing, the signal must contain an entry
price and a Stop Loss. The Stop Loss can be provided as an exact sl_price or through the existing stop_loss parameter in pips, which AlgoWay converts into the corresponding Stop Loss price before calculating the position size.For now, this feature is available only for TradeLocker. We will run additional real-world tests before gradually introducing risk-based position sizing for other supported platforms.
π₯1
AlgoWay Update - More Precise Order Management
We spent today improving how AlgoWay tracks and manages orders across supported trading platforms.
The main update is support for modifying the entry price of an existing pending Limit or Stop order without cancelling and recreating it. This is now implemented across MT5, TradeLocker, MatchTrader, DXtrade and cTrader Open API.
MT5 users: please update the AlgoWay EA to the latest version to use this feature.
For cTrader, we also completed a major upgrade to position and order tracking, including safer handling of market orders, partial and full closes, Close All, pending-order modifications and cancellations.
We also improved how AlgoWay keeps different TradingView strategy orders separated. If you assign an order ID to an alert, later Modify, Breakeven, Flat or Close All commands can target only the positions associated with that specific order instead of affecting unrelated positions on the same symbol. In JSON alerts, this is done using the
Quick tips:
To modify a pending Limit/Stop entry price, send
Keep the same
If you do not use
We spent today improving how AlgoWay tracks and manages orders across supported trading platforms.
The main update is support for modifying the entry price of an existing pending Limit or Stop order without cancelling and recreating it. This is now implemented across MT5, TradeLocker, MatchTrader, DXtrade and cTrader Open API.
MT5 users: please update the AlgoWay EA to the latest version to use this feature.
For cTrader, we also completed a major upgrade to position and order tracking, including safer handling of market orders, partial and full closes, Close All, pending-order modifications and cancellations.
We also improved how AlgoWay keeps different TradingView strategy orders separated. If you assign an order ID to an alert, later Modify, Breakeven, Flat or Close All commands can target only the positions associated with that specific order instead of affecting unrelated positions on the same symbol. In JSON alerts, this is done using the
tv_order_id parameter.Quick tips:
To modify a pending Limit/Stop entry price, send
order_action: "modify" with the same tv_order_id, the corresponding order_type, and the new price.Keep the same
tv_order_id for all alerts that belong to the same TradingView trade/order sequence.If you do not use
tv_order_id, nothing changes - your existing alerts continue to use the existing trading logic.π¨ URGENT - Tradeify DXTrade Server Change
Yesterday at approximately 13:00 (UTC), Tradeify changed the address of its DXTrade server.
Old address:
New address:
Because of this change, the old address now redirects requests to the new server, causing some authentication requests to fail with HTTP 405 - Method Not Allowed. This is why Tradeify trades may have stopped executing since yesterday evening.
We recommend all Tradeify users open their Webhook Settings and replace the old server address with the new one.
AlgoWay has already been adapted to this change.
Yesterday at approximately 13:00 (UTC), Tradeify changed the address of its DXTrade server.
Old address:
https://dx.tradeifycrypto.coNew address:
https://dx.tradeify247.coBecause of this change, the old address now redirects requests to the new server, causing some authentication requests to fail with HTTP 405 - Method Not Allowed. This is why Tradeify trades may have stopped executing since yesterday evening.
We recommend all Tradeify users open their Webhook Settings and replace the old server address with the new one.
AlgoWay has already been adapted to this change.
β οΈ TradingView webhook delivery issue
TradingView is currently experiencing an issue with webhook alert delivery. Some alerts may fail with the following error:
βWebhook delivery failed β couldn't find this domain.β
TradingView has officially acknowledged the issue and confirmed that their engineers are investigating it.
This issue is not related to AlgoWay or your webhook URL configuration.
Our recommendation: temporarily avoid algorithmic trading through webhooks, or closely monitor alerts directly inside TradingView and compare them with the trades actually executed. Otherwise, an entry, exit, or position close may be missed β which can easily lead to real financial losses.
We are monitoring the situation and will update you once TradingView confirms that the issue has been resolved.
TradingView is currently experiencing an issue with webhook alert delivery. Some alerts may fail with the following error:
βWebhook delivery failed β couldn't find this domain.β
TradingView has officially acknowledged the issue and confirmed that their engineers are investigating it.
This issue is not related to AlgoWay or your webhook URL configuration.
Our recommendation: temporarily avoid algorithmic trading through webhooks, or closely monitor alerts directly inside TradingView and compare them with the trades actually executed. Otherwise, an entry, exit, or position close may be missed β which can easily lead to real financial losses.
We are monitoring the situation and will update you once TradingView confirms that the issue has been resolved.
β€1
β οΈ TradingView Alerts Issue β Update
The DNS issue warning has disappeared from the TradingView Help Center. It appears the problem affected TradingView for approximately the last 20 hours and has now been resolved.
Please review the entire alert history for yesterday before contacting our support team. Some trades that were not executed may have been caused by this TradingView-side issue.
The good news is that the problem has been localized to TradingView, and everything is now working normally again.
The DNS issue warning has disappeared from the TradingView Help Center. It appears the problem affected TradingView for approximately the last 20 hours and has now been resolved.
Please review the entire alert history for yesterday before contacting our support team. Some trades that were not executed may have been caused by this TradingView-side issue.
The good news is that the problem has been localized to TradingView, and everything is now working normally again.
β€1
MT5 EA v2.17a
β’ New Pending Order Handling input:
Auto Convert (Legacy)
Reject Invalid Price
Chase Price (Advanced)
β’ Added advanced LIMIT/STOP price chasing with up to 2 placement attempts.
β’ LIMIT/STOP type is preserved in Chase mode - no MARKET fallback.
β’ Improved pending-order validation using broker stop distance and tick size.
β’ Fixed pending cancellation: Cancel Limit/Stop can no longer accidentally close an open position.
β’ Improved cancellation of Legacy auto-converted LIMIT βοΈ STOP orders by tv_order_id / comment.
β’ Added extra Risk% protection during pending-order chasing.
β’ Improved MARKET order quote handling: the EA now waits briefly for a valid live Bid/Ask instead of rejecting the trade immediately when tick data is temporarily unavailable.
β’ Prevented MARKET orders from being prepared with a zero Bid/Ask price.
β’ Improved AUTO price deviation handling: the order price is refreshed from a valid live tick immediately before OrderSend, then the allowed deviation is calculated from current spread and recent price movement.
Default behavior remains Auto Convert (Legacy) for backward compatibility.
https://algoway.trade/downloads/AlgoWay_WS/MQL5/Experts/AlgoWayWS-MT5.ex5
β’ New Pending Order Handling input:
Auto Convert (Legacy)
Reject Invalid Price
Chase Price (Advanced)
β’ Added advanced LIMIT/STOP price chasing with up to 2 placement attempts.
β’ LIMIT/STOP type is preserved in Chase mode - no MARKET fallback.
β’ Improved pending-order validation using broker stop distance and tick size.
β’ Fixed pending cancellation: Cancel Limit/Stop can no longer accidentally close an open position.
β’ Improved cancellation of Legacy auto-converted LIMIT βοΈ STOP orders by tv_order_id / comment.
β’ Added extra Risk% protection during pending-order chasing.
β’ Improved MARKET order quote handling: the EA now waits briefly for a valid live Bid/Ask instead of rejecting the trade immediately when tick data is temporarily unavailable.
β’ Prevented MARKET orders from being prepared with a zero Bid/Ask price.
β’ Improved AUTO price deviation handling: the order price is refreshed from a valid live tick immediately before OrderSend, then the allowed deviation is calculated from current spread and recent price movement.
Default behavior remains Auto Convert (Legacy) for backward compatibility.
https://algoway.trade/downloads/AlgoWay_WS/MQL5/Experts/AlgoWayWS-MT5.ex5
β€1
New MEXC position sizing options are now available in AlgoWay JSON webhooks.
You can use
Example - open a MEXC position using 0.05% of current account equity:
Example - risk 0.05% of current account equity with a 1% Stop Loss:
To close part of the current position, use
Example - close 50% of the current TRXUSDT position:
Here
In Hedge mode, you can also specify which side should be reduced.
Example - close 25% of the current LONG position:
Example - close 25% of the current SHORT position:
To close the entire position, use
In Hedge mode,
AlgoWay requests live MEXC account equity only when
You can use
order_size_type with:balance_percent - order_contracts is treated as a percentage of your current MEXC account equity and used to calculate the target position size.risk_percent - order_contracts is treated as the percentage of account equity you want to risk at the Stop Loss.position_percent - used with flat to close a percentage of the currently open position.Example - open a MEXC position using 0.05% of current account equity:
{
"platform_name": "mexc",
"ticker": "TRXUSDT",
"order_action": "buy",
"order_contracts": "0.05",
"order_size_type": "balance_percent",
"leverage": "50"
}Example - risk 0.05% of current account equity with a 1% Stop Loss:
{
"platform_name": "mexc",
"ticker": "TRXUSDT",
"order_action": "buy",
"order_contracts": "0.05",
"order_size_type": "risk_percent",
"sltp_type": "percent",
"stop_loss": "1",
"leverage": "50"
}To close part of the current position, use
position_percent.Example - close 50% of the current TRXUSDT position:
{
"platform_name": "mexc",
"ticker": "TRXUSDT",
"order_action": "flat",
"order_contracts": "50",
"order_size_type": "position_percent"
}Here
50 means 50% of the currently open position, not 50 contracts.In Hedge mode, you can also specify which side should be reduced.
Example - close 25% of the current LONG position:
{
"platform_name": "mexc",
"ticker": "TRXUSDT",
"order_action": "flat",
"order_contracts": "25",
"order_size_type": "position_percent",
"close_side": "long"
}Example - close 25% of the current SHORT position:
{
"platform_name": "mexc",
"ticker": "TRXUSDT",
"order_action": "flat",
"order_contracts": "25",
"order_size_type": "position_percent",
"close_side": "short"
}To close the entire position, use
closeall:{
"platform_name": "mexc",
"ticker": "TRXUSDT",
"order_action": "closeall"
}In Hedge mode,
closeall can also target only one side:{
"platform_name": "mexc",
"ticker": "TRXUSDT",
"order_action": "closeall",
"close_side": "long"
}AlgoWay requests live MEXC account equity only when
balance_percent or risk_percent is used. position_percent works from the actual open position size and does not require account equity or Stop Loss calculations. Normal fixed-size orders continue to work exactly as before.Automate your trading with AlgoWay. Turn Telegram signals and TradingView alerts into trades on MT5 and 20+ supported platforms - including entries, Stop Loss, Take Profit, partial exits and full closes. Keep full control of your strategy and trading account while AlgoWay handles execution automatically. Start with a 14-day free trial. Plans start at just $7/month only after the trial, if you choose to continue. AlgoWay is execution software only - no trading signals, investment advice or guaranteed returns. β www.AlgoWay.trade
π WEEX is now available on AlgoWay!
Connect TradingView directly to WEEX Futures and automate execution through AlgoWay.
Available now:
Market, Limit & Stop orders
SL/TP by price, percent or pips
Leverage
Cross / Isolated
Balance & risk-based sizing
Partial close & Close All
Hedge, Reverse, Opposite & Inverse modes
Connect with your WEEX API Key + API Secret + Passphrase.
Setup:
AlgoWay Store >> TradingView >> WEEX
Create the webhook, add your WEEX credentials, choose leverage, margin and trade mode, then paste the AlgoWay webhook URL into TradingView.
β οΈ Trailing Stop is not supported yet.
Full setup manual with screenshots and JSON examples is available on AlgoWay. https://algoway.trade/blog/algoway-weex-integration-guide.html
Connect TradingView directly to WEEX Futures and automate execution through AlgoWay.
Available now:
Market, Limit & Stop orders
SL/TP by price, percent or pips
Leverage
Cross / Isolated
Balance & risk-based sizing
Partial close & Close All
Hedge, Reverse, Opposite & Inverse modes
Connect with your WEEX API Key + API Secret + Passphrase.
Setup:
AlgoWay Store >> TradingView >> WEEX
Create the webhook, add your WEEX credentials, choose leverage, margin and trade mode, then paste the AlgoWay webhook URL into TradingView.
β οΈ Trailing Stop is not supported yet.
Full setup manual with screenshots and JSON examples is available on AlgoWay. https://algoway.trade/blog/algoway-weex-integration-guide.html
π₯1
π New on AlgoWay: Percentage-Based Sizing for Binance Futures
Binance Futures webhooks now support the same percentage-based sizing logic already available on WEEX.
You can now size trades directly from your TradingView JSON using:
Example:
This uses 25% of the Binance Futures account balance to calculate the position size.
Risk-based sizing:
This sizes the position so that a 1% move to the Stop Loss represents approximately 1% of account equity.
Partial position close:
This closes 50% of the current position.
Percentage SL/TP remains available separately through:
So position sizing, risk sizing, partial exits, Stop Loss and Take Profit can now all be expressed directly in percentage terms inside the Binance Futures webhook JSON.
Leverage remains independent and can still be set with
Existing Binance webhooks using normal contract/quantity sizing continue to work unchanged.
β οΈ
Binance Futures webhooks now support the same percentage-based sizing logic already available on WEEX.
You can now size trades directly from your TradingView JSON using:
balance_percent - open a position using a percentage of your account balance.risk_percent - calculate position size automatically from the percentage of account equity you want to risk and the distance to your Stop Loss.position_percent - close a percentage of an existing position with order_action:"flat".Example:
{"platform_name":"binance","ticker":"BTCUSDT","order_action":"buy","order_contracts":"25","order_size_type":"balance_percent"}This uses 25% of the Binance Futures account balance to calculate the position size.
Risk-based sizing:
{"platform_name":"binance","ticker":"BTCUSDT","order_action":"buy","order_contracts":"1","order_size_type":"risk_percent","stop_loss":"1","sltp_type":"percent"}This sizes the position so that a 1% move to the Stop Loss represents approximately 1% of account equity.
Partial position close:
{"platform_name":"binance","ticker":"BTCUSDT","order_action":"flat","order_contracts":"50","order_size_type":"position_percent"}This closes 50% of the current position.
Percentage SL/TP remains available separately through:
"sltp_type":"percent"So position sizing, risk sizing, partial exits, Stop Loss and Take Profit can now all be expressed directly in percentage terms inside the Binance Futures webhook JSON.
Leverage remains independent and can still be set with
"leverage".Existing Binance webhooks using normal contract/quantity sizing continue to work unchanged.
β οΈ
closeall always closes 100% of the selected position and does not use percentage sizing.π₯1
βοΈ Have you used AlgoWay? Share your experience!
If AlgoWay is part of your trading setup, weβd really appreciate it if you could take a minute to leave us a review on Trustpilot.
Good, bad, or somewhere in between β your honest feedback matters. It helps other traders understand what AlgoWay actually does, and it helps us see what works and what still needs work.
Leave your review on Trustpilot >>
https://www.trustpilot.com/evaluate/algoway.trade
Thank you for using AlgoWay. β€οΈ
If AlgoWay is part of your trading setup, weβd really appreciate it if you could take a minute to leave us a review on Trustpilot.
Good, bad, or somewhere in between β your honest feedback matters. It helps other traders understand what AlgoWay actually does, and it helps us see what works and what still needs work.
Leave your review on Trustpilot >>
https://www.trustpilot.com/evaluate/algoway.trade
Thank you for using AlgoWay. β€οΈ
π2π1
π New Telegram Copier Controls Are Live
Weβve added several new execution and protection options to AlgoWay Telegram Copier:
SL/TP Requirement - choose
Disable Market Entries - block Market entries and allow only valid pending Limit/Stop entries
Duplicate Protection - blocks repeated entries for the same symbol within 30 seconds
Aggressive Breakeven - recognizes contextual BE recommendations as executable breakeven commands
Reply Re-entry - supports
All options can be configured separately for each Telegram Copier route.
Telegram Copier >> Settings
Weβve added several new execution and protection options to AlgoWay Telegram Copier:
SL/TP Requirement - choose
Auto or accept only signals containing both Stop Loss and Take ProfitDisable Market Entries - block Market entries and allow only valid pending Limit/Stop entries
Duplicate Protection - blocks repeated entries for the same symbol within 30 seconds
Aggressive Breakeven - recognizes contextual BE recommendations as executable breakeven commands
Reply Re-entry - supports
rebuy / resell replies to previous Telegram signalsAll options can be configured separately for each Telegram Copier route.
Telegram Copier >> Settings
π₯°1