Persistence will get it. Consistency will keep it.
Trading Dashboard For Currency Basket Trader (EA) 33 replies
I need a Trading Dashboard or Trading Panel 1 reply
Dashboard DB_CCFp-Diff Sessions/News Trading 6 replies
Dashboard trading EURNZD 3 replies
Which dashboard for basket trading? 9 replies
DislikedSOMEONE PLEASE, I'm using some versions of the Currency Meter (V3I) and others, but got stuck about the Session Management. Is it GMT? Broker? Local Time? Thanks a lot.Ignored
Disliked{quote} It's all about correlated pairs. You can read #post 4727 (http://www.forexfactory.com/showthre...83#post8409883) in this forum I set template based on Currency: AUD, CAD, CHF, EUR, GBP, NZD, and USD You can change the template as you like. ghoulIgnored
Disliked{quote} It's all about correlated pairs. You can read #post 4727 (http://www.forexfactory.com/showthre...83#post8409883) in this forum I set template based on Currency: AUD, CAD, CHF, EUR, GBP, NZD, and USD You can change the template as you like. ghoulIgnored
DislikedTry This..... All the Best..... sorry if this more small, i think about compatible/friendly with small resolution.....1 Indicator 1 Expert advidsor 1 Template {image} {file}
Ignored
DislikedIn a bid to better understand dingdong wonderful Heat Map Dashboard, I have tried as in the attached photo to first and foremost identify each part of the dashboard and then get to understand them and set them properly. Hopefully, I believe dingdong99 and @Denya can add more information and better understanding on the general functions of the different parts of the Dashboard especially the Sentiment and Break Event. Having a clear understanding of a tool, I believe will greatly help us as trader to improve the odds of profiting with it. {image}...Ignored
DislikedAfter several weeks of reading from the very first post and walking trough all the amazing ideas and tools I was able to test, here is my first post in this thread. At some point I decided to start my own dashboard and I started by doing a fork of the great Power Meter v3 from GVC. It's intended to be used in manual mode, but have an option to run in auto or auto-reverse modes. Right now t looks as shown in pictures: {image} {image} {image} Right now I'm working in the lower part of the DB, relocating and refactoring things to optimize space and...Ignored
Disliked{quote} Pictures looks good. Read my ideas few posts above ..... for example. But difficult for me to express ideas in English.H D N - What is it? I continue to explore your board. Many of your ideas I like. Enable / disable signal indicators direct on the board. Changing lot. Buttons trade a basket of currencies. Close button on the right. Well done.
Ignored
Disliked{quote} Yes, good picture. Yesterday i did guide in russian forum. I have added your picture if you do not mind. Sorry ... guide in russian================================================================================ ОПИСАНИЕ ЗНАЧЕНИЙ ДАШБОАРД Ding Dong Fibo HM Начну потихоньку описывать...
Ignored
DislikedAfter several weeks of reading from the very first post and walking trough all the amazing ideas and tools I was able to test, here is my first post in this thread. At some point I decided to start my own dashboard and I started by doing a fork of the great Power Meter v3 from GVC, melted with some ideas of the Ultimate DB, some other ideas I grabbed from users and my own needs when using the dashboards already posted in this thread. It's intended to be used in manual mode, but have an option to run in auto or auto-reverse modes. Right now it looks...Ignored
Disliked{quote} Hi aeseme, Great work in progress and would really love to make use of the Heat Map and the GAP in trading. Have you considered adding the GAP and M1/M5 candle direction trading strategy JibalaPasan recommended in the MT4 Trading the GAP With Excel? You might already have noted these info but just some I found interesting that you might still take note of coding the dashboard - all relating virtually to the GAP. - CapeCoddah hints to his new dashboard and JibalaPasan's comment MT4 Trading the GAP With Excel Post...Ignored
Disliked{quote} this is great...how to know what is master end slave ... does your dash auto determine correlation and master slave somehow?Ignored
bool SyncBuy()
{
string syncpair;
if(Symbol()==prefix+"EURUSD"+suffix)
syncpair=prefix+"EURJPY"+suffix;
if(Symbol()==prefix+"EURJPY"+suffix)
syncpair=prefix+"EURUSD"+suffix;
if(
Bid>iOpen(Symbol(),PERIOD_H1,0) &&
Bid>iOpen(Symbol(),PERIOD_H4,0) &&
Bid>iOpen(Symbol(),PERIOD_D1,0))
{
if(
MarketInfo(syncpair,MODE_BID)>iOpen(syncpair,PERIOD_H1,0) &&
MarketInfo(syncpair,MODE_BID)>iOpen(syncpair,PERIOD_H4,0) &&
MarketInfo(syncpair,MODE_BID)>iOpen(syncpair,PERIOD_D1,0))
{
return(true);
}
}
return(false);
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
bool SyncSell()
{
string syncpair;
if(Symbol()==prefix+"EURUSD"+suffix)
syncpair=prefix+"EURJPY"+suffix;
if(Symbol()==prefix+"EURJPY"+suffix)
syncpair=prefix+"EURUSD"+suffix;
if(Bid<iOpen(Symbol(),PERIOD_H1,0) &&
Bid<iOpen(Symbol(),PERIOD_H4,0) &&
Bid<iOpen(Symbol(),PERIOD_D1,0))
{
if(MarketInfo(syncpair,MODE_BID)<iOpen(syncpair,PERIOD_H1,0) &&
MarketInfo(syncpair,MODE_BID)<iOpen(syncpair,PERIOD_H4,0) &&
MarketInfo(syncpair,MODE_BID)<iOpen(syncpair,PERIOD_D1,0))
{
return(true);
}
}
return(false);
}