| Coding Forum Collaborate, receive help, or discuss coding related issues. |
![]() | | Tweet | |
| | #1 | ||
![]() | Multicharts Colour Question is this possible to do this in MC - Put a color beetween Bollinger Band Up and BB Down - Put a color beetween Bollinger Bands and for example Keltner Bands Please see screenshots Last edited by nuno-online; 12-16-2009 at 06:18 AM. | ||
| |
|
| | #2 | ||
![]() | Re: Multicharts Colour Question put a color beetween Bollinger Band Up and BB Down thank you | ||
| |
|
| | #3 | ||
![]() | Re: Multicharts Colour Question | ||
| |
|
| The Following 2 Users Say Thank You to BlowFish For This Useful Post: | ||
nuno-online (12-18-2009), Tams (12-18-2009) | ||
| | #4 | ||
![]() | Re: Multicharts Colour Question here a reply posted by TJ in another forum {in the Format Study window: set the plot1 and plot2 TYPE to Bar High and Bar Low. set the plot weight to thick. } inputs: BollingerPrice( Close ), TestPriceUBand( Close ), TestPriceLBand( Close ), Length( 20 ), NumDevsUp( 2 ), NumDevsDn( -2 ), Displace( 0 ) ; variables: var0( 0 ), var1( 0 ), var2( 0 ), var3( 0 ) ; var0 = AverageFC( BollingerPrice, Length ) ; var1 = StandardDev( BollingerPrice, Length, 1 ) ; var3 = var0 + NumDevsUp * var1 ; var2 = var0 + NumDevsDn * var1 ; condition1 = Displace >= 0 or CurrentBar > AbsValue( Displace ) ; if condition1 then begin Plot1[Displace]( var3, "bar high" ) ; Plot2[Displace]( var2, "bar low" ) ; Plot4[Displace]( var3, "UpperBand" ) ; Plot5[Displace]( var2, "LowerBand" ) ; Plot6[Displace]( var0, "MidLine" ) ; if Displace <= 0 then begin condition1 = TestPriceLBand crosses over var2 ; if condition1 then Alert( "Price crossing over lower price band" ) else begin condition1 = TestPriceUBand crosses under var3 ; if condition1 then Alert( "Price crossing under upper price band" ) ; end; end ; end ; Last edited by nuno-online; 12-18-2009 at 04:36 PM. | ||
| |
|
![]() |
| Tags |
| paint |
| Thread Tools | Search this Thread |
| Display Modes | |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| ARW_new (MultiCharts) | Tams | Coding Forum | 16 | 02-14-2011 08:29 AM |
| How Can I See Bar by Bar in Multicharts? | rajatheroyal | Automated Trading | 2 | 10-15-2009 01:23 PM |
| MultiCharts Going GOLD Soon ! | Tams | Brokers and Data Feeds | 16 | 05-27-2009 08:56 AM |
| Help Converting EFS to MultiCharts | rdkyote | Coding Forum | 3 | 11-03-2008 10:41 AM |
| Multicharts | ptop | Beginners Forum | 8 | 11-04-2007 06:38 AM |