Support Board
Date/Time: Fri, 31 Oct 2025 22:17:32 +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; | 
