I have a button (comes from my indi) onto chart. When I click that, I change value of one input (from true to false) and then I want that indi acted like as if someone changes an input and then Indi is redrawn on chart with changed input value...
how to do that programatically?
........
void Init(){
...
if (show_the_lines ) { ......}
else {....}
...
}
......
void CLickFUnc() {
......
if (clicked){
show_the_lines = false;
Reinitilize_Indocator() ... or something like this..
}
...
}


Comment