Support Board
Date/Time: Wed, 18 Mar 2026 12:10: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: 723 |
|
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; |
