Plotting options call and put volume on individual stock

Questions about MultiCharts and user contributed studies.
jnangoy
Posts: 2
Joined: 02 Jan 2016
Has thanked: 3 times

Plotting options call and put volume on individual stock

Postby jnangoy » 02 Jan 2016

Hi ,

I have easylanguage multicharts , and have tried to build indicator for plotting aggregate options call and put volume on individual stock

I have tried something like : plot1(callvolume,"call volume");

It doesnt plot anything on chart

For datafeed i use iqfeed and my broker is interactive brokers

Does anyone successfully charting this call and put volume , please help me :)

User avatar
TJ
Posts: 7743
Joined: 29 Aug 2006
Location: Global Citizen
Has thanked: 1033 times
Been thanked: 2222 times

Re: Plotting options call and put volume on individual stock

Postby TJ » 02 Jan 2016

Hi ,

I have easylanguage multicharts , and have tried to build indicator for plotting aggregate options call and put volume on individual stock

I have tried something like : plot1(callvolume,"call volume");

It doesnt plot anything on chart

For datafeed i use iqfeed and my broker is interactive brokers

Does anyone successfully charting this call and put volume , please help me :)
See this thread:
viewtopic.php?f=1&t=49266


As with any instrument,
you need to add the symbol into QuoteManager before you can receive quotes and create a chart.

jnangoy
Posts: 2
Joined: 02 Jan 2016
Has thanked: 3 times

Re: Plotting options call and put volume on individual stock

Postby jnangoy » 02 Jan 2016

Dear TJ,

Thank you for your reply,

I have added the symbol and I can display daily chart for the symbol , such as AAPL , BIDU, etc
But the indicator that contains the code to plot the call volume doesnt display anything , which suppose to display the call volume for that particular stock, such as AAPL on Daily chart

Is it because of I need to subscribe appropriate data for getting call and put volume for individual stock

At the moment i only subscribe nyse and nasdaq from iqfeed , do i need to subscribe other market data as well ?

Is it possible to pull this data if i connect and pull data from my interactive broker brokerage account ?

User avatar
TJ
Posts: 7743
Joined: 29 Aug 2006
Location: Global Citizen
Has thanked: 1033 times
Been thanked: 2222 times

Re: Plotting options call and put volume on individual stock

Postby TJ » 02 Jan 2016

Dear TJ,

Thank you for your reply,

I have added the symbol and I can display daily chart for the symbol , such as AAPL , BIDU, etc
But the indicator that contains the code to plot the call volume doesnt display anything , which suppose to display the call volume for that particular stock, such as AAPL on Daily chart

Is it because of I need to subscribe appropriate data for getting call and put volume for individual stock

At the moment i only subscribe nyse and nasdaq from iqfeed , do i need to subscribe other market data as well ?

Is it possible to pull this data if i connect and pull data from my interactive broker brokerage account ?
These days you have to subscribe for anything and everything.

If you are subscribed, you will be able to see the quotes in TWS.
Not just the underlying, but the option strikes.

To create a chart in MultiCharts, you have to know the symbol.
All Option strikes have their individual symbol and description.

User avatar
JoshM
Posts: 2195
Joined: 20 May 2011
Location: The Netherlands
Has thanked: 1544 times
Been thanked: 1565 times
Contact:

Re: Plotting options call and put volume on individual stock

Postby JoshM » 03 Jan 2016

I have tried something like : plot1(callvolume,"call volume");

It doesnt plot anything on chart

For datafeed i use iqfeed and my broker is interactive brokers
The `callvolume` keyword is a stub. That means it's added to PowerLanguage and recognised by the PowerLanguage Editor, but it doesn't do anything; it's 'empty'.

It doesn't matter which data feed you have or which data you see in TWS; the `callvolume` keyword (and other PowerLanguage keywords related to options) unfortunately don't work.

Edit:
`callvolume` is a TS keyword so probably added to MultiCharts for backward compatibility. Here's a thread about option trading in MultiCharts, and at that time the opinion was that such a feature won't be added. My guess is that the PowerLanguage keywords for options therefore won't be implemented too.


Return to “MultiCharts”