I want to create a simple crossover condition where I want to have a buy sell signal on the cross over, I have tried it without resoultion, but I want it with resoultion so that I can set different timeframe for my VWMA. Here's my code, please edit it and let me know, it'd be a great help.
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © bhavikap141
//@version=4
strategy(title="VWMA", shorttitle="VWMA", overlay=true)
len = input(33, "Length", minval=1)
src = input(close, "Source", type = input.source)
resolution = input(title="Resolution", type=input.resolution, defval="5")
outer = vwma(src, len)
ss1 = security(syminfo.tickerid, resolution, outer, gaps=true)
mm2 = plot(ss1, color=#3A6CA8)
length = input(20, "Length", minval=1)
srce = input(close, "Source", type = input.source)
res = input(title="Resolution", type=input.resolution, defval="15")
//ma = vwma(src, len)
//offset = input(0, "Offset", type = input.integer, minval = -500, maxval = 500)
//plot(ma, title="VWMA", color=#3A6CA8, offset = offset)
out = vwma(srce, length)
s1 = security(syminfo.tickerid, res, out, gaps=true)
m2 = plot(s1, color=#3A6CA8)
I am not so familiar with pinescrpit so I am trying my best to add the condition, but always a bummer. So I just need a condition here in my code.