Wave Trader
How do I print un-capitalized text in the drawTextRelative command? It always capitalizes the text even though it is written in small caps.
drawTextRelative(0, low() - 0.03125, "B", null, Color.lime, null | Text.ONTOP | Text.BOLD, "Arial", 14, getValue("rawtime") + "B");
This should print in lower case (although I have no idea what the rawtime flag is there for)
drawTextRelative(0, low() - 0.03125, "b", null, Color.lime, null | Text.ONTOP | Text.BOLD, "Arial", 14, getValue("rawtime") + "b");
Alex
How do I print un-capitalized text in the drawTextRelative command? It always capitalizes the text even though it is written in small caps.
drawTextRelative(0, low() - 0.03125, "B", null, Color.lime, null | Text.ONTOP | Text.BOLD, "Arial", 14, getValue("rawtime") + "B");
This should print in lower case (although I have no idea what the rawtime flag is there for)
drawTextRelative(0, low() - 0.03125, "b", null, Color.lime, null | Text.ONTOP | Text.BOLD, "Arial", 14, getValue("rawtime") + "b");
Alex
Comment