Support Board
Date/Time: Fri, 09 May 2025 23:16:03 +0000
Post From: Automated Trading AAPL options
[2015-12-23 18:04:10] |
User713273 - Posts: 409 |
Would a study function that can be programmed to prevent it from being used on a Symbol other than the one specified work, as we will be opening charts containing different symbols attributed to K & M columns. //This is an example to prevent a study from being used on a Chartbook other than the one specified if(sc.ChartbookName != "Chartbook50") return; //This is an example to prevent a study from being used on a symbol other than the one specified if(sc.Symbol != "ABCD") return; |