You are on page 1of 2

instrument {name ="OB CASH 1.

0", short_name ="CASH", overlay=true}

exibir_tracamento = input ( 1, "Deseja exibir?", input.string_selection,


{"SIM","NO"})

input_group { "SMAA", smaa_color = input{ default = "deeppink", type =


input.color }}
input_group { "SMAB", smab_color = input{ default = "white", type = input.color }}

input_group { "cash", up_color = input{ default = "golden", type = input.color }}


input_group { "cash", Down_color = input{ default = "golden", type = input.color }}

sec = security(current_ticker_id, "1m")

sec = security(current_ticker_id, "5m")

smaa = sma(close, '3')


smab = sma(close, '50')
smaao = sma(open, '3')
smabo = sma(open, '50')

plot(smaa, "SMA", smaa_color)


plot(smab, "SMA", smab_color)

emaa = ema(close, '100')

period = input (12, "front.period", input.integer, 1)

source = input (1, "front.ind.source", input.string_selection, inputs.titles)


fn = input (1, "front.newind.average", input.string_selection, averages.titles)

period = input (14, "front.period", input.integer, 5)

source = input (5, "front.ind.source", input.string_selection, inputs.titles)


fn = input (5, "front.newind.average", input.string_selection, averages.titles)

input_group {
"front.newind.barcolors",
up_color = input { default = "#daa520", type = input.color },
down_color = input { default = "#daa520", type = input.color }
}

local sourceSeries = inputs [source]


local averageFunction = averages [fn]

mean = averageFunction (sourceSeries, period)


mad = sourceSeries - mean

rect {
first = 0,
second = mad,
color = mad >= mad [1] and up_color or down_color,
width = 0.4
}
rect {
first = 0,
second = mad,
color = mad >= mad [5] and up_color or down_color,
width = 0.4}
if
( mad <= 0 and ( mad[1] > mad) and (smaa < smab) and (smaao > smabo) and close <=
emaa ) then
plot_shape (1,
"CASH VENDA",
shape_style.arrowdown,
shape_size.huge,
down_color,
shape_location.abovebar,
0,
" CASH VENDA ",
1)
end

if
( mad >= 0 and (mad > mad[1]) and (smaa > smab) and close >= emaa and smaao <
smabo)
then
plot_shape (1,
"CASH COMPRA",
shape_style.arrowup,
shape_size.huge,
up_color,
shape_location.belowbar,
0,
"CASH COMPRA",
1)

end

You might also like