<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Animated Forward Curve Graph in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Animated-Forward-Curve-Graph/m-p/192375#M41143</link>
    <description>&lt;P&gt;Hi Ian&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Further to your helpful response, I am wondering whether the script need to modified to fit this price dataset.&amp;nbsp; Essentially the x-axis is the trading date and the Y-axis are&amp;nbsp; the spot month (represent the price graph) and M01 to M24 months (represent the forward curve "line" for 1st to 24th month prices as it work through the time series.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know my request may came across a bit imposing.&amp;nbsp; As I am a newbie on JMP graph builder; I was hoping that if your time permits, you could help me to set that into a JMP dataset and scripts, Through JMP, I could learn the way you did it and i will work through the iterations.&amp;nbsp; It is also okay if you are not able to act on my request if it is not appropriate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 09 Apr 2019 16:22:57 GMT</pubDate>
    <dc:creator>yongthanyee</dc:creator>
    <dc:date>2019-04-09T16:22:57Z</dc:date>
    <item>
      <title>Animated Forward Curve Graph</title>
      <link>https://community.jmp.com/t5/Discussions/Animated-Forward-Curve-Graph/m-p/191772#M41091</link>
      <description>&lt;P&gt;May I ask whether JMP allows me to build an animated forward curve graph as attached.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://timera-energy.com/the-dangers-of-mixing-forecasts-and-forward-curves/" target="_blank" rel="noopener"&gt;https://timera-energy.com/the-dangers-of-mixing-forecasts-and-forward-curves/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="oil-animated-v3.gif" style="width: 602px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/16782i124D041175F352E1/image-dimensions/602x399?v=v2" width="602" height="399" role="button" title="oil-animated-v3.gif" alt="oil-animated-v3.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2019 13:18:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Animated-Forward-Curve-Graph/m-p/191772#M41091</guid>
      <dc:creator>yongthanyee</dc:creator>
      <dc:date>2019-04-08T13:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: Animated Forward Curve Graph</title>
      <link>https://community.jmp.com/t5/Discussions/Animated-Forward-Curve-Graph/m-p/191999#M41135</link>
      <description>&lt;P&gt;The 'animation' part is easy as this script shows. But here the 'forward curve' is just a straight line, but you would need to look into how that's actually calculated:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NamesDefaultToHere(1);

// Make some data
dt = NewTable("Data", NewColumn("Value", Numeric, Continuous, Formula(RandomNormal(0,1))));
dt &amp;lt;&amp;lt; addRows(10);

// Graph the data (this script was built by JMP, apart from the 'add graphics script' part)
dt &amp;lt;&amp;lt; Graph Builder(
	Size( 535, 467 ),
	Show Control Panel( 0 ),
	Variables( X( Transform Column( "Row", Formula( Row() ) ) ), Y( :Value ) ),
	Elements( Line( X, Y, Legend( 8 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"Row",
			ScaleBox,
			{Min( 0 ), Max( 40 ), Inc( 2 ), Minor Ticks( 1 )}
		),
		Dispatch(
			{},
			"Value",
			ScaleBox,
			{Min( 3 ), Max( -3 ), Inc( 1 ), Minor Ticks( 0 )}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Add Graphics Script(
				2,
				Description( "Script" ),
				Pen Color( "Red" );
				Line Style( "Dotted" );
				dt = Data Table( "Data" );
				Line( {N Row( dt ), :Value[N Row( dt )]}, {40, 0} );
			), Grid Line Order( 1 ), Reference Line Order( 3 )}
		)
	)
);

// Add some new data
for(p=11, p&amp;lt;=40, p++, Wait(0.1); dt &amp;lt;&amp;lt; addRow(1));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 09 Apr 2019 11:30:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Animated-Forward-Curve-Graph/m-p/191999#M41135</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2019-04-09T11:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: Animated Forward Curve Graph</title>
      <link>https://community.jmp.com/t5/Discussions/Animated-Forward-Curve-Graph/m-p/192003#M41136</link>
      <description>&lt;P&gt;Hi Ian&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;I will experiment with it and see where it leads...much appreciated...&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 12:07:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Animated-Forward-Curve-Graph/m-p/192003#M41136</guid>
      <dc:creator>yongthanyee</dc:creator>
      <dc:date>2019-04-09T12:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Animated Forward Curve Graph</title>
      <link>https://community.jmp.com/t5/Discussions/Animated-Forward-Curve-Graph/m-p/192375#M41143</link>
      <description>&lt;P&gt;Hi Ian&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Further to your helpful response, I am wondering whether the script need to modified to fit this price dataset.&amp;nbsp; Essentially the x-axis is the trading date and the Y-axis are&amp;nbsp; the spot month (represent the price graph) and M01 to M24 months (represent the forward curve "line" for 1st to 24th month prices as it work through the time series.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know my request may came across a bit imposing.&amp;nbsp; As I am a newbie on JMP graph builder; I was hoping that if your time permits, you could help me to set that into a JMP dataset and scripts, Through JMP, I could learn the way you did it and i will work through the iterations.&amp;nbsp; It is also okay if you are not able to act on my request if it is not appropriate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2019 16:22:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Animated-Forward-Curve-Graph/m-p/192375#M41143</guid>
      <dc:creator>yongthanyee</dc:creator>
      <dc:date>2019-04-09T16:22:57Z</dc:date>
    </item>
  </channel>
</rss>

