I am able to draw my text going forward for my purposes and I'm using "\n " + "\n " + "\n " + "\n, for one line but continuously in the script.
How do I go about dropping down with another, not line but another { }, like below. Because this one line could go very long even though it would look good on the chart.
if (WinRate_Instructions == true )
{
Draw.TextFixed(this, "","EMA1 " + "\nEMA2 " + "\nEMA3 " + "\nHi" + "\n
}
I did try a second, another { }
{
Draw.TextFixed(
}
with two "\n\n " + ""\n\n " + but it just made additional spacing
I could make that one line a mile long in the script but anyone coming along later looking at the script will be like, what!
Forgot to add this pic

Comment