It looks like you're new here. If you want to get involved, click one of these buttons!
Hi,how i can convert logic of LOW>REF(LOW,1)in python ?Thanks Ram
In pandas we have an option of
df['low']> df['low'].shift()
in pure python you can simply use (i-1) while looping
i used pandas shift fn to do this. works fine.
Thanks
Ram