//@version=5 indicator('🔥 Karlos Algo Black V8 Sharp —mix version', overlay=true) // === INPUTS === show_tp_sl = input.bool(true, 'Display TP & SL') rrr = input.string('1:2', 'Risk to Reward Ratio', options=['1:1','1:2','1:3','1:4']) tp_sl_mult = input.float(1.0, 'TP/SL Multiplier') tp_sl_prec = input.int(2, 'TP/SL Precision') disable_repeating = input.bool(true, 'Disable Repeating Signals') rsi_threshold = input.int(80, 'RSI Threshold') candle_delta_len = input.int(10, 'Candle Delta Length') // === LABEL STYLE === label_style = input.string('text bubble', 'Label Style', options=['text bubble','triangle','arrow']) buy_label_color = input.color(color.green, 'BUY Label Color') sell_label_color = input.color(color.red, 'SELL Label Color') label_text_color = input.color(color.white, 'Label Text Color') // === INDICATOR...
Comments
Post a Comment