ImAbhishekTomar

About

Username
ImAbhishekTomar
Joined
Visits
13
Last Active
Roles
Member

Comments

  • import math def calculate_atm_strik(last_price, strik_def): val1 = math.floor(last_price / strik_def) * strik_def val2 = math.ceil(last_price / strik_def) * strik_def return val1 if abs(last_price - val1) < abs(last_price - val2) els…