harwee/IQOption-Api

How to get the current value of an option ?????

Closed this issue · 1 comments

Hello

In order to determine what the trend intensity of an option is, I need to know what that option's current market value is.

I tried using the 'EURUSD.subscribe_to_candle_interval_sync(60)' but none of those values are the current market value of the stock. The ask and bid do not chance as often as the graph you get in IQoptions

'iqoption.portfolio.items()' and 'item.value' only work once you have already placed a bet which doesn't help much if you are trying to determine in which direction you want to go.

How do I gain the current market value of the stock?

data=str(Stock.candles).split("'close': ")
C=float(data[len(data)-1].split(",")[0])# Current value of stock