<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154103</link>
    <title>MATLAB Central Newsreader - Option Pricing?</title>
    <description>Feed for thread: Option Pricing?</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Tue, 07 Aug 2007 17:28:37 -0400</pubDate>
      <title>Option Pricing?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154103#386638</link>
      <author>Stephen</author>
      <description>By using the function below in ML, you get both the call &lt;br&gt;
and put prices.&lt;br&gt;
&lt;br&gt;
[CallPrice, PutPrice] = blsprice(Price, Strike, Rate, &lt;br&gt;
Time, Volatility, DividendRate)&lt;br&gt;
&lt;br&gt;
On the other hand, if you use A=blsprice(...), A is the &lt;br&gt;
call price.&lt;br&gt;
&lt;br&gt;
Is there anyway to get the put prices only?&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
Stephen</description>
    </item>
    <item>
      <pubDate>Tue, 07 Aug 2007 18:15:55 -0400</pubDate>
      <title>Re: Option Pricing?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154103#386645</link>
      <author> Screwdriver223</author>
      <description>On Aug 7, 1:28 pm, &quot;stephen &quot; &amp;lt;huan...@nationwide.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; By using the function below in ML, you get both the call&lt;br&gt;
&amp;gt; and put prices.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; [CallPrice, PutPrice] = blsprice(Price, Strike, Rate,&lt;br&gt;
&amp;gt; Time, Volatility, DividendRate)&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Is there anyway to get the put prices only?&lt;br&gt;
&amp;gt;&lt;br&gt;
[PutPrice, PutPrice] = blsprice(Price, Strike, Rate,&lt;br&gt;
Time, Volatility, DividendRate)</description>
    </item>
    <item>
      <pubDate>Tue, 07 Aug 2007 18:38:44 -0400</pubDate>
      <title>Re: Option Pricing?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154103#386650</link>
      <author>Stephen</author>
      <description>Thanks for your response.&lt;br&gt;
&lt;br&gt;
What if I want to assign the put price to a variable, i.e. &lt;br&gt;
b=Putprice...?&lt;br&gt;
&lt;br&gt;
Thanks&lt;br&gt;
&amp;nbsp;Screwdriver223 &amp;lt;david.kolin@gmail.com&amp;gt; wrote in message &lt;br&gt;
&amp;lt;1186510555.983456.298650@l70g2000hse.googlegroups.com&amp;gt;...&lt;br&gt;
&amp;gt; On Aug 7, 1:28 pm, &quot;stephen &quot; &amp;lt;huan...@nationwide.com&amp;gt; &lt;br&gt;
wrote:&lt;br&gt;
&amp;gt; &amp;gt; By using the function below in ML, you get both the &lt;br&gt;
call&lt;br&gt;
&amp;gt; &amp;gt; and put prices.&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; [CallPrice, PutPrice] = blsprice(Price, Strike, Rate,&lt;br&gt;
&amp;gt; &amp;gt; Time, Volatility, DividendRate)&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Is there anyway to get the put prices only?&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; [PutPrice, PutPrice] = blsprice(Price, Strike, Rate,&lt;br&gt;
&amp;gt; Time, Volatility, DividendRate)&lt;br&gt;
&amp;gt; </description>
    </item>
    <item>
      <pubDate>Tue, 07 Aug 2007 22:11:02 -0400</pubDate>
      <title>Re: Option Pricing?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/154103#386675</link>
      <author> Screwdriver223</author>
      <description>&amp;gt; &amp;gt; &amp;gt; By using the function below in ML, you get both the call&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; and put prices.&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; [CallPrice, PutPrice] = blsprice(Price, Strike, Rate,&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Time, Volatility, DividendRate)&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Is there anyway to get the put prices only?&lt;br&gt;
ONE SOLUTION&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; [PutPrice, PutPrice] = blsprice(Price, Strike, Rate,&lt;br&gt;
&amp;gt; &amp;gt; Time, Volatility, DividendRate)&lt;br&gt;
On Aug 7, 2:38 pm, &quot;stephen &quot; &amp;lt;huan...@nationwide.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; Thanks for your response.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; What if I want to assign the put price to a variable, i.e.&lt;br&gt;
&amp;gt; b=Putprice...?&lt;br&gt;
&lt;br&gt;
Maybe I don't understand what you're asking for, but what about:&lt;br&gt;
[b, b] = blsprice(Price, Strike, Rate, ...&lt;br&gt;
Time, Volatility, DividendRate)&lt;br&gt;
&lt;br&gt;
OR&lt;br&gt;
&lt;br&gt;
[PutPrice, PutPrice] = blsprice(Price, Strike, Rate, ...&lt;br&gt;
Time, Volatility, DividendRate)&lt;br&gt;
b=PutPrice;</description>
    </item>
  </channel>
</rss>

