A simple dashboard for NB10.2(updated 2012/6/28)

Share your 10.x indicators here.
Post Reply
User avatar
philcs65
Trader
Posts: 18
Joined: Thu Dec 01, 2011 7:45 am
Location: California

Re: A simple dashboard for NB10.2(updated 2012/6/5)

Post by philcs65 »

Concerning the disappearing act of the dashboard, it may have something to do with compiling the program under Cowboy IBFX as opposed to another such as FXDD. If the .mq4 version was published here we could test to see it that is the source of the problem.
Huuummmmm..That's Interesting.
User avatar
DING
Trader
Posts: 103
Joined: Wed Nov 16, 2011 11:53 am

Re: A simple dashboard for NB10.2(updated 2012/6/5)

Post by DING »

philcs65 wrote:Concerning the disappearing act of the dashboard, it may have something to do with compiling the program under Cowboy IBFX as opposed to another such as FXDD. If the .mq4 version was published here we could test to see it that is the source of the problem.
I test it on FXCM Empty4, and .mq4 version was published on post 1.
User avatar
nanningbob
Trader
Posts: 4564
Joined: Sun Dec 04, 2011 1:23 pm

Re: A simple dashboard for NB10.2(updated 2012/6/5)

Post by nanningbob »

I use Cowboy IBFX and this is the pic on my screen. Any suggestions? I have build 419
You do not have the required permissions to view the files attached to this post.
I trade http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3964,
I talk about my philosophy of trading here.
http://www.stevehopwoodforex.com/phpBB3 ... =38&t=3627
"The key to converting something useful to others is simplicity. Complexity is the enemy to execution." Tony Robbins
itsaquestion
Trader
Posts: 15
Joined: Wed Dec 21, 2011 7:00 am

Re: A simple dashboard for NB10.2(updated 2012/6/5)

Post by itsaquestion »

Hi Everyone! I'm back.

The problem seems to be there is no zero divide check in the original TMA indicator. When you have all the history data the indi works fine, but when you haven't, the TMA function will return some zero value and cause the zero divide problem and stop the dashboard.

I've checked every lines of code and add some zero divide check to the TMA calculation functions I copied from the original TMASlope indicator, then everything works find.

Code: Select all

   if (dblSumw==0) return (0);//a check
   return( dblSum / dblSumw );

Code: Select all

   if(atrMTF ==0) return(0); //a check
   double hh = ( dblTmaMTF - dblPrevMTF ) / atrMTF;
If you see lots of 0 in the dashbaord, please wait for a while, the Empty4 is downloading the histroy data.

The Cowboy IBFX terminal build 432 works OK. I will check more brokers later.

Please download the lastest dashboard in post 1.

--
User avatar
spyderman
Trader
Posts: 338
Joined: Sun Dec 11, 2011 1:39 pm

Re: A simple dashboard for NB10.2(updated 2012/6/27)

Post by spyderman »

I've got no joy. Just get the title but no data... :(
Snaggin' some pips
User avatar
spyderman
Trader
Posts: 338
Joined: Sun Dec 11, 2011 1:39 pm

Re: A simple dashboard for NB10.2(updated 2012/6/27)

Post by spyderman »

I figured it out. My broker has a weird suffix on the pairs. I went into the code and changed that and now its working.

Maybe others who are having problems are for the same reason.
Snaggin' some pips
User avatar
blazko
Trader
Posts: 86
Joined: Thu Dec 01, 2011 10:57 am

Re: A simple dashboard for NB10.2(updated 2012/6/27)

Post by blazko »

Got the same.
On my Cowboy IBFX MINI it works after i add "m" suffix to each pair in the code - otherwise screen is blank.
2012-06-28 08-17-49.jpg
ps. attached is a version modified for all Cowboy IBFX mini demo account
You do not have the required permissions to view the files attached to this post.
cheers
itsaquestion
Trader
Posts: 15
Joined: Wed Dec 21, 2011 7:00 am

Re: A simple dashboard for NB10.2(updated 2012/6/27)

Post by itsaquestion »

blazko wrote:Got the same.
On my Cowboy IBFX MINI it works after i add "m" suffix to each pair in the code - otherwise screen is blank.
2012-06-28 08-17-49.jpg
ps. attached is a version modified for all Cowboy IBFX mini demo account

Thanks blazko.

I want to make a link of you post to the post 1, but I don't know how because I don't know how to get you post's url. :(
User avatar
blazko
Trader
Posts: 86
Joined: Thu Dec 01, 2011 10:57 am

Re: A simple dashboard for NB10.2(updated 2012/6/28)

Post by blazko »

i sent it to you via PM.
Do you think you could make this thing as "auto pairs" like in some other indis?
cheers
User avatar
NeoTrader
Trader
Posts: 436
Joined: Wed Apr 04, 2012 2:52 pm
Location: small Village at Lake Chiemsee, Bavaria, Germany

Re: A simple dashboard for NB10.2(updated 2012/6/27)

Post by NeoTrader »

hi itsaquestion,
itsaquestion wrote:I want to make a link of you post to the post 1, but I don't know how because I don't know how to get you post's url. :(
  • On the top right of each post is the posted date.
  • On the left of it is a little icon resembling a paper page.
  • Just make a right click on the Icon and copy the link.
  • You now have a direct Link to this post.
happy Trading,

NeoTrader

-
Post Reply

Return to “10.x Indi forum”