Support Board
Date/Time: Wed, 15 Jan 2025 09:27:32 +0000
Post From: How to trade a different security from chart
[2017-06-08 07:59:19] |
Sierra Chart Engineering - Posts: 104368 |
if (sc.Index == 0) { string Chart_Symbol; Chart_Symbol = sc.Symbol; if (Chart_Symbol.find("SVXY") != -1) { Symbol_OK = 1; } We recommend changing it to this: if (sc.UpdateStartIndex == sc.ArraySize - 2) { if (sc.Symbol.CompareNoCase("SVXY", 4) ==0) Symbol_OK = 1; Sierra Chart Support - Engineering Level Your definitive source for support. Other responses are from users. Try to keep your questions brief and to the point. Be aware of support policy: https://www.sierrachart.com/index.php?l=PostingInformation.php#GeneralInformation For the most reliable, advanced, and zero cost futures order routing, *change* to the Teton service: Sierra Chart Teton Futures Order Routing |