I have Two Dataframe - First Dataset is -
Second Dataset is -
In both Dataset there is the same column, but I want to subtract values based on the Strike Price column, if both datasets Strick_price match then subtract those Close values.
Example -
Dataset1 dataset2 Close
29500 29500 Close - Close
30000 Not Match Nan
30300 30300 Close - Close
30400 30400 Close - Close
30500 Not Match Nan
I don't understand, How can I do this? please help me to solve this problem.

