Yet Another Dashboard for 10.4
-
Staedtler
Re: Yet Another Dashboard for 10.4
giving me a potential long signal on this pair.. doesn't look ready to me yet it's giving a long signal ?
You do not have the required permissions to view the files attached to this post.
- candletiger
- Trader
- Posts: 83
- Joined: Tue Jun 05, 2012 1:59 pm
- Location: Munich, Germany
Re: Yet Another Dashboard for 10.4
can't be a long signal as RSI is on top not on bottom. Is this a question to the chart or did the dashboard gave you a buy signal? which ine? Maybe an AOT?Staedtler wrote:giving me a potential long signal on this pair.. doesn't look ready to me yet it's giving a long signal ?
- candletiger
- Trader
- Posts: 83
- Joined: Tue Jun 05, 2012 1:59 pm
- Location: Munich, Germany
Re: Yet Another Dashboard for 10.4
Dashboard 1.07 available in post 1
It is close to what I wanted to have:
The code is meanwhile complete crap, mainly because I re-used the 3rd-party button libraries and the ugly, ugly, ugly way how to control Empty4 windows handling. Empty4 ist just... crap.
It is close to what I wanted to have:
- A dashboard that shows me all symbols and its signals
- It color highlights symbols with valid signals
- Checkboxes to select signals to be used
- A button next to each symbol. Click on it and the related chart will be loaded, including switching to timeframe H4 and loading a template (yes, that's so f*ing cool, I love it
) - Symbols with any kind of order is existing marked in blue color to avoid checking it again
The code is meanwhile complete crap, mainly because I re-used the 3rd-party button libraries and the ugly, ugly, ugly way how to control Empty4 windows handling. Empty4 ist just... crap.
You do not have the required permissions to view the files attached to this post.
- MurphyMan
- Trader
- Posts: 345
- Joined: Tue Nov 15, 2011 2:35 pm
- Location: Southern Illinois, USA
Re: Yet Another Dashboard for 10.4
Very cool, Candletiger. Very cool!
I like the chart buttons, they work great. Now I may not have to keep a zillion charts open.
Thanks for sharing.
Sam
I like the chart buttons, they work great. Now I may not have to keep a zillion charts open.
Thanks for sharing.
Sam
-
theforexedge
- Trader
- Posts: 220
- Joined: Thu Apr 26, 2012 10:31 pm
- Location: Torquay
Re: Yet Another Dashboard for 10.4
Candletiger
Wow!! This has just answered all my prayers!!
Dude you're now the Dashboard King
Thanks, JP
Wow!! This has just answered all my prayers!!
Dude you're now the Dashboard King
Thanks, JP
- mjws00
- Trader
- Posts: 609
- Joined: Fri Jan 04, 2013 10:17 pm
- Location: Victoria
Re: Yet Another Dashboard for 10.4
Very cool CT. Gonna have to study some of your magic. Hats off to anyone who will build out an interface on this platform.
Awesome work.
Mike
Awesome work.
Mike
Reading the dark heart.
-
Plople
- Trader
- Posts: 11
- Joined: Sat Feb 25, 2012 12:14 am
Re: Yet Another Dashboard for 10.4
I see buttons and checkbox but when I press them, nothing happens. XP sp3.
Also signal wrong some times: EURUSD buy when previous version is correct sell.
How to do?
Also signal wrong some times: EURUSD buy when previous version is correct sell.
How to do?
- candletiger
- Trader
- Posts: 83
- Joined: Tue Jun 05, 2012 1:59 pm
- Location: Munich, Germany
Re: Yet Another Dashboard for 10.4
have no XP to test this, on my 3 Win7 systems it works.Plople wrote:I see buttons and checkbox but when I press them, nothing happens. XP sp3.
- have you the charts already open?
- can you close the market watch window and try again?
- please attach log file after you hit the button
please post a screenshot of the dashboard and the related chart. Otherwise how should I help?Plople wrote: Also signal wrong some times: EURUSD buy when previous version is correct sell.
How to do?
- candletiger
- Trader
- Posts: 83
- Joined: Tue Jun 05, 2012 1:59 pm
- Location: Munich, Germany
Re: Yet Another Dashboard for 10.4
DONT DO THISmjws00 wrote:Gonna have to study some of your magic.
No magic, just Empty4, crap code
Still wonder that it works at all
- candletiger
- Trader
- Posts: 83
- Joined: Tue Jun 05, 2012 1:59 pm
- Location: Munich, Germany
Re: Yet Another Dashboard for 10.4
I reworked this a bit in 1.07. The "checkSignal" block I only used for coloring the text (valid/invalid signal). "DisplayRowInfo" is used the generate the potential statement (BUY-A0-R-S etc).McNish wrote:@ CT : Hello,
I want to make a mod in the code and need a little guidance from you.
Say I want to check for a criteria of the AO colour, Green = Sell and Red = Buy. I believe I ought to put the code in the "checkSignal" block, or is it to go in the "DisplayRowInfo" block?
The whole stuff came from MrLong, no idea why this split.
this is the code you are loking for, this way I calculate the AO trend changeMcNish wrote: Also please can you describe what the actual code would be for checking the current colour value and the last bar's colour value for the AO.
Thanks.
Code: Select all
if(iCustom(pairName, PERIOD_H4,"Awesome",0,1,0) == 0) //red
{
if(iCustom(pairName, PERIOD_H4,"Awesome",0,2,1) == 0) ATSell = true;
}
if(iCustom(pairName, PERIOD_H4,"Awesome",0,2,0) == 0) //green
{
if(iCustom(pairName, PERIOD_H4,"Awesome",0,1,1) == 0) ATBuy = true;
}