Re: [amibroker] Plotting Parameter Values in Chart Title

2010-03-02 Thread wavemechanic
Title = "{{NAME}}" + "-x Day MA Liquidity- [$]:" + "{{VALUES}}" + " " + MAbars ; Bill - Original Message - From: scanlan...@ymail.com To: amibroker@yahoogroups.com Sent: March 01, 2010 10:51 PM Subject: [amibroker] Plotting Paramete

[amibroker] Plotting Parameter Values in Chart Title

2010-03-01 Thread scanlan...@ymail.com
Can you help me to show in the Title the Parameter value for MABars in the following example. //Liquidity MA 20 MABars = Param( "MA Period" , 20,1,200,1,0); Plot( MA(C * V, MABars) , Name(), colorBlue ); Title = "{{NAME}}-x Day MA Liquidity- [$]: {{VALUES}} {{MA Period}}" ; Thanks Richard