Script Convert Indicator Set To Comma Separated
Hello Community,
I have created a script in Powershell that converts the values of an indicator to the values needed to use in CP (CustomIndy) >= version 2.49
Hello Community,
I have created a script in Powershell that converts the values of an indicator to the values needed to use in CP (CustomIndy) >= version 2.49
You have to save the indicator configuration and then drag this file (*.set) to the script to then copy the value from the Texbox below called "Indicator parameters (comma separated):" to the CP indicator, for example to #1 and set it. paste in the parameter "Indicator parameters (comma separated):" as indicated
The script automates putting all indicator values separated by commas.
BugFix:
Edit .ps1
Replace:
#Number
if ($value -match "^[\d\.]+$")
By:
#Number
if ($value -match "^[\d\.\-]+$")
Add "\-"
You must have both files in the same directory. Search Youtube/Google how to run a Powershell script.
Wow thank you for work Ulises, this will help alot!! I try it asap.