Support Board
Date/Time: Wed, 29 Oct 2025 14:41:18 +0000
Post From: How to attached a custom name to an order using s_SCNewOrder::TextTag?
| [2025-03-05 23:19:02] |
| cmet - Posts: 721 |
|
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; |
