AlgoWay
175 subscribers
29 photos
45 links
AlgoWay β€” Trade Automation for TradingView & Telegram.

Connect strategies and signals to 22 trading platforms, brokers and crypto exchanges. Webhooks, trade routing, cloning and order management.

🌐 https://algoway.trade
πŸ‘€ Admin: @sammailian
Download Telegram
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 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: https://dx.tradeifycrypto.co
New address: https://dx.tradeify247.co
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.
⚠️ 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.
❀1
AlgoWay pinned a photo
⚠️ 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.
❀1
AlgoWay pinned «⚠️ 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…»
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
❀1
New MEXC position sizing options are now available in AlgoWay JSON webhooks.
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
πŸ”₯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:
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. ❀️
πŸ‘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 Auto or accept only signals containing both Stop Loss and Take Profit
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 rebuy / resell replies to previous Telegram signals
All options can be configured separately for each Telegram Copier route.
Telegram Copier >> Settings
πŸ₯°1
AlgoWay pinned a photo
AlgoWay Γ— Elixo AI β€” New Partnership
We’re pleased to announce our partnership with Elixo AI, a crypto trading automation platform combining DCA bots, AI trade analysis, pair trading, futures arbitrage, and funding rate strategies.
For traders who use these types of strategies, the partnership is especially useful: Elixo AI is now fully integrated with AlgoWay, allowing Elixo strategies and signals to work directly with AlgoWay’s execution infrastructure without building a separate connection from scratch.
If you trade with DCA, arbitrage, funding, or AI-driven strategies, we recommend taking a closer look at Elixo AI.
Elixo AI: https://elixoai.com/en/
Read more on our blog: https://algoway.trade/blog/elixo-ai-crypto-trading-automation-platform.html