hi there,
ive a couple of issues ive encounter during the making of my studies i would appreciate some help
1- if you write a code so that in the same candle should appear 2 lines of drawtext, the only that is displayed is the second, it also happens with the line tool
example -
drawTextRelative(0,entry + (0.05),"entry-"+entry, Color.green, null, Text.BOLD|Text.CENTER|Text.TOP|Text.ONTOP, null, 12, "l"+getValue("rawtime"));
drawTextRelative(0,Stop + (0.05),"Stop-"+Stop, Color.green, null, Text.BOLD|Text.CENTER|Text.TOP|Text.ONTOP, null, 12, "l"+getValue("rawtime"));
2- ive done a backtest so it will from the first candle analyze the remaining ones for a specific setup using the loop instruction.
now even if i have an option to prevent from the efs to enter the rest of the program i still end up with the time it takes from that first candle to the last one the efs analyzing all the remaining candles,even if they dont enter the time consuming part of the program it still take some time that is being wasted.
is there an instruction to "send the efs" to the last candle? bypassing the other ones? or to cancel analyzing the remaining of the candles from the first one?.
thanks
Paty
ive a couple of issues ive encounter during the making of my studies i would appreciate some help
1- if you write a code so that in the same candle should appear 2 lines of drawtext, the only that is displayed is the second, it also happens with the line tool
example -
drawTextRelative(0,entry + (0.05),"entry-"+entry, Color.green, null, Text.BOLD|Text.CENTER|Text.TOP|Text.ONTOP, null, 12, "l"+getValue("rawtime"));
drawTextRelative(0,Stop + (0.05),"Stop-"+Stop, Color.green, null, Text.BOLD|Text.CENTER|Text.TOP|Text.ONTOP, null, 12, "l"+getValue("rawtime"));
2- ive done a backtest so it will from the first candle analyze the remaining ones for a specific setup using the loop instruction.
now even if i have an option to prevent from the efs to enter the rest of the program i still end up with the time it takes from that first candle to the last one the efs analyzing all the remaining candles,even if they dont enter the time consuming part of the program it still take some time that is being wasted.
is there an instruction to "send the efs" to the last candle? bypassing the other ones? or to cancel analyzing the remaining of the candles from the first one?.
thanks
Paty
Comment