Support Board
Date/Time: Thu, 01 May 2025 15:21:11 +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; |