Hi,
I'm testing an algorithm that uses monthly rebalancing, based on filtering stocks using get_fundamentals(). Ideally, I would want to run get_fundamentals once per month (at rebalance time), but it seems Quantopian is running it every day, because it's forcing me to include it within the before_trading_starts() function, rather than within my scheduled rebalance() function. Is there any way to avoid this and have it run just once a month?
Thanks in advance.