What is the most efficient way to check if an equity dropped by 1% on the daily in Python? 

Idea: use history function and get the previous day Close and compare to todays Open

Author