How to find our monthly close > monthly Open for the screener.
I am trying to add this condition in to my screener as we have max Weekly timeframe available in the screener. Could anyone help me to get code for this condition.
Try this (not tested):
IF Month <> Month[2] THEN
PrevMonthOpen = MonthOpen
PrevMonthClose = close[2]
MonthOpen = open[1]
ENDIF
MonthClose = close
MonthOpen and MonthClose retain the current month’s values, while PrevMonthOpen and PrevMonthClose retain the previous month’s values.
Very interesting. Two questions: Is it possible to create a screener with the various sectors of the Italian stock exchange and the end or beginning of the month to evaluate the different performances? Still, is it possible to export the historical data of a service? Thanks
@Andrea
- Only post in the language of the forumthat you are posting in. For example English only in the English speaking forums and French only in the French speaking forums.
As to your question, no it isn’t.