Welcome to the Traders Laboratory Forums.
Coding Forum Collaborate, receive help, or discuss coding related issues.

Reply
Old 12-16-2009, 06:01 AM   #1

Join Date: Nov 2006
Location: France
Posts: 24
Ignore this user

Thanks: 42
Thanked 2 Times in 2 Posts



Multicharts Colour Question

Hi

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
Attached Thumbnails
Multicharts Colour Question-bollinger-bands-colour.jpg   Multicharts Colour Question-bollinger-bands-keltner-colour.png  

Last edited by nuno-online; 12-16-2009 at 06:18 AM.
nuno-online is offline  
Reply With Quote
Old 12-17-2009, 08:30 AM   #2

Join Date: Nov 2006
Location: France
Posts: 24
Ignore this user

Thanks: 42
Thanked 2 Times in 2 Posts



Re: Multicharts Colour Question

Can someone who use Multicharts tell me if this is possible with MC:
put a color beetween Bollinger Band Up and BB Down

thank you
nuno-online is offline  
Reply With Quote
Old 12-18-2009, 02:20 PM   #3

BlowFish's Avatar

Join Date: Mar 2007
Location: In Da House
Posts: 3,272
Ignore this user

Thanks: 129
Thanked 1,038 Times in 694 Posts



Re: Multicharts Colour Question

I don't think so (though I have not tried version 6 yet). You can 'fake it' by plotting HL bars with the plot set to the thickest width. Worth signing up to their forums, people are pretty helpful over there.
BlowFish is offline  
Reply With Quote
The Following 2 Users Say Thank You to BlowFish For This Useful Post:
nuno-online (12-18-2009), Tams (12-18-2009)
Old 12-18-2009, 03:46 PM   #4

Join Date: Nov 2006
Location: France
Posts: 24
Ignore this user

Thanks: 42
Thanked 2 Times in 2 Posts



Re: Multicharts Colour Question

Thank you BlowFish for your reply

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 ;
Attached Thumbnails
Multicharts Colour Question-bb_paintbar.gif   Multicharts Colour Question-bb_pb_format.gif  

Last edited by nuno-online; 12-18-2009 at 04:36 PM.
nuno-online is offline  
Reply With Quote

Reply

Tags
paint

Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

All times are GMT -4. The time now is 03:49 AM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.