-
Note – Requried custom command: GetColor
Grabbed this originally from pshai’s work but I have since modified it and made it into a cmd that I can call on any script easily
Option 1 – just give it the position id and thats it!
-- Plot InputGroupHeader('Average Enter Price') Finalize(CC_PlotAEP(longPosId)) Finalize(CC_PlotAEP(shortPosId))
Option 2 – If you as using it more then once to plot multiple positions then you can specify suffix, input name and color
-- Plot InputGroupHeader('Average Enter Price') Finalize(CC_PlotAEP(longPosId, 'Trade', 'Long Trade', 'DarkGreen')) Finalize(CC_PlotAEP(shortPosId, 'Trade', 'Short Trade', 'Maroon'))