Dislikedlooks like it feels market close is near to be honest i like the old one where i can see the pins arrows but new one work the same way is just a cosmetic thing and of course new improvements. {image}Ignored
Try don't lose pants never...
MagicGirl dashboard 221 replies
Help with dashboard style indicator 2 replies
Dashboard indicators 4 replies
Dashboard Indicator Required 1 reply
Dashboard/Grid in lower indictor window 6 replies
Dislikedlooks like it feels market close is near to be honest i like the old one where i can see the pins arrows but new one work the same way is just a cosmetic thing and of course new improvements. {image}Ignored
Disliked{quote} You take so much risk using all pairs in small account. But you have more changesPS: I think that is demo. If vitamins worked fine in NFP, in trend days you will catch a lot of pips
{quote} For today is enough
PS: How do you see new look? Its useful or you think older better?
Ignored
Disliked{quote} Wow. Ich mag weiß, ich bin nicht die einzige verrückte Kerl mitIgnored
Disliked{quote} Hello how you do to have a gray background at the opening of the robot? I can not found the solutionIgnored
Disliked{quote} how to turn black theme? I wish to do programming in mq4Ignored
DislikedStill very early stage. Soon we will finish that nightmare is MT4 settings dialog{image}
Ignored
Disliked{quote} I want my robot to a black background you can given me the piece of code that you use in your mq4 file for managing the fund thank youIgnored
Disliked{quote} If you say like your BDM ( win32 windows hack ) is an implementation will arrive in a future. But not soon.Ignored
//+------------------------------------------------------------------+
//| SimplePanel.mq4 |
//| Copyright 2009-2014, MetaQuotes Software Corp. |
//| http://www.mql4.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2009-2014, MetaQuotes Software Corp."
#property link "http://www.mql4.com"
#property version "1.00"
#property strict
#property indicator_separate_window
#property indicator_buffers 0
#property indicator_minimum 0.0
#property indicator_maximum 0.0
#include "PanelDialog.mqh"
//+------------------------------------------------------------------+
//| Global Variables |
//+------------------------------------------------------------------+
CPanelDialog ExtDialog;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int OnInit(void)
{
//--- create application dialog
if(!ExtDialog.Create(0,"Simple Panel",0,50,50,390,200))
return(INIT_FAILED);
//--- run application
if(!ExtDialog.Run())
return(INIT_FAILED);
//--- ok
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
//--- destroy application dialog
ExtDialog.Destroy(reason);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
const int prev_calculated,
const int begin,
const double &price[])
{
//---
// do nothing
//--- return value of prev_calculated for next call
return(rates_total);
}
//+------------------------------------------------------------------+
//| ChartEvent function |
//+------------------------------------------------------------------+
void OnChartEvent(const int id,
const long &lparam,
const double &dparam,
const string &sparam)
{
ExtDialog.ChartEvent(id,lparam,dparam,sparam);
}
//+------------------------------------------------------------------+ Disliked{quote} I didnt have idea. I never used MT4 framework. But seem simple chart window. I can simulate it. I will give that option in next build. But you know MT4 dont let attach indicators ( for force new subwindow inside chart ). You use dynamic template for create subwindows in chart?Ignored