- ago
Is there a way to change the Blocks Strategy created indicators line thickness and colors? Or only if I change them in C# and SaveAs? Thanks.
0
311
Solved
5 Replies

Reply

Bookmark

Sort
Cone8
 ( 25.44% )
- ago
#1
Correct - Open as C# Code Strategy, modify, Save As, and use that Strategy.
0
Best Answer
- ago
#2
Right. Also what I thought in doing is use as the template in Blocks then make minor modifications in C# Save As with a subsequent V# (Version number) every time I modify it in Blocks.
0
- ago
#3
Quick question How do I code the thickness of the dots or line?

CODE:
PlotIndicator(indicator22,new WLColor(5,111,127), PlotStyle.Dots);
0
Glitch8
 ( 11.81% )
- ago
#4
The "Dots" PlotStyle does not have a customizable thickness.

You could use PlotIndicatorLine to get a dotted line with a customizable thickness, however.
1
- ago
#5
Thanks this works :)

CODE:
PlotIndicatorLine(indicator22,new WLColor(5,111,127),2,LineStyle.Dotted);
0

Reply

Bookmark

Sort