Support Board
Date/Time: Mon, 21 Apr 2025 16:38:14 +0000
Post From: How to attached a custom name to an order using s_SCNewOrder::TextTag?
[2025-03-05 23:19:02] |
cmet - Posts: 690 |
Have you tried constructing the text tag in a different way? Something along these lines: SCString tag;
tag += "Symbol: "; tag += order.Symbol; tag += " | Side: "; tag += direction; tag += " | Order #: "; SCString orderCount; orderCount.Format("%u", count); tag += orderCount; order.TextTag = tag; |