Search found 12 matches

by bombaybom
28 Oct 2016
Forum: MultiCharts
Topic: Open=high [SOLVED]
Replies: 6
Views: 1983

Re: Open=high [SOLVED]

Hi Ben,

I think u are right!

Tank you for that input.

Damit, I thought it was a simple mistake from my end.


I thought it would be easy to produce a sound when such a bar appeared...

Have nice weekend!
by bombaybom
27 Oct 2016
Forum: MultiCharts
Topic: Open=high [SOLVED]
Replies: 6
Views: 1983

Re: Open=high [SOLVED]

My goal is to have a piece of code that identify these bars were open = High

Those bars I have marked with a white arrow in the image.

But the code is just painting one yellow.

What I was hoping was that the code would paint all bars were open = high
by bombaybom
27 Oct 2016
Forum: MultiCharts
Topic: Open=high [SOLVED]
Replies: 6
Views: 1983

Re: Open=high [SOLVED]

Hi TJ,

Strange,

I did this code to see it on the heikin-ashi chart. But it just looks random.

Code: Select all

If open = high and close < open then begin
PlotPB (High, Low, High, Low, "test", Yellow, default,3);
End;
by bombaybom
27 Oct 2016
Forum: MultiCharts
Topic: Open=high [SOLVED]
Replies: 6
Views: 1983

Open=high [SOLVED]

Hi,

I'm trying to identify candlebars where the openbar = high. (The image)

But I need some guidance



Code: Select all

If open = high and close < open then begin
by bombaybom
06 Oct 2015
Forum: User Contributed Studies and Indicator Library
Topic: Help with Fishnet code
Replies: 2
Views: 3444

Help with Fishnet code

Hi, I try to make this code to MC but sticks to (i=net; I<net; i ++ part) hope someone can guide me right. Thanks in advance! /* This code plot fishnet with rainbow colors. I use 30 MA per color.*/ _SECTION_BEGIN(""); Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Sty...
by bombaybom
14 Sep 2015
Forum: MultiCharts
Topic: Chande Kroll Stop indicator
Replies: 1
Views: 5837

Chande Kroll Stop indicator

Hi, Is there eny one that have this indicator in easy language? Best regards Calculation : first high stop = HIGHEST[p](high) - x * Average True Range[p] first low stop = LOWEST[p](high) + x * Average True Range[p] stop short = HIGHEST[q](first high stop) top long = LOWEST[q](first low stop) Interpr...
by bombaybom
08 Aug 2015
Forum: MultiCharts
Topic: Need some guidance [SOLVED]
Replies: 4
Views: 1473

Re: Need some guidance [SOLVED]

Hi I have tried this part, but somthing is not working for me. I am thinking wrong? vars: PuttCall (0); if MarketPosition = 0 then Begin If Close > sme and putcall < 1 then Begin buy ("Enter Long") 1 contracts Next bar at market; PutCall = 1; End; If Close > sme and putcall > -1 then Begin SellShort...
by bombaybom
06 Aug 2015
Forum: MultiCharts
Topic: Need some guidance [SOLVED]
Replies: 4
Views: 1473

Need some guidance [SOLVED]

Hi I did this video tutorial " How to create an advanced MultiCharts EasyLanguage Strategy". But I tried to change some things with the entries and got stuck. What I'm trying to make is that each call and the put position will come in turns. Now you can get call multiple times in a row and the same ...
by bombaybom
02 Aug 2015
Forum: MultiCharts
Topic: guidence for a stoploss [SOLVED]
Replies: 1
Views: 965

guidence for a stoploss [SOLVED]

Hello I'm trying to get together a stop loss but need some guidance. What I am trying to make is that after a position been taken activate a stop loss that close the trade at break even if the close has been X pips higher from When The trade was taken. Position at 10 pips Goes up 10 + x pips Positon...
by bombaybom
29 Apr 2015
Forum: MultiCharts
Topic: Remove false signals HELP
Replies: 1
Views: 1097

Remove false signals HELP

Hello, I wonder how the rest of you have solved the problem that occurs when a security will close above or below a value ( eg . An average value ) . The problem is that the signal indicates when the price is above the average. But to not get " false signals " I must look a period backwards. But if ...
by bombaybom
14 Nov 2014
Forum: MultiCharts
Topic: Help with indicator [SOLVED]
Replies: 2
Views: 1675

Re: Help with indicator [SOLVED]

Thank you Ben!!!


That was perfect!
Just what I was looking for :)
by bombaybom
13 Nov 2014
Forum: MultiCharts
Topic: Help with indicator [SOLVED]
Replies: 2
Views: 1675

Help with indicator [SOLVED]

Hi, I hope you can guide me in the right direction. Thanks in advance. I woud like to have the Superindikator to work but have some problems with it. ----------- // my code inputs: Length( 5 ), NumATRs( 1.5 ) ; // Calculate the bands Uband = (High + Low) / 2 + (NumATRs * AvgTrueRange( Length )); Lba...

Go to advanced search