The road to success is always under construction !
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
Dislikedthats true....thanks anyways! your settings are doing well, but had a pc crash today and some demos got reset GRRRRRR {quote}Ignored
Dislikedaeseme, do not be silent.VARIANT 1/ FAST EASY VARIANT: Russian programmer can write in global variables, all signals (from 28 pairs) that gives indicator MADash. Global variables will be 28 variables with names like "MADash_EURUSD". For each variable values are: No signal - 2 There signal BUY - 0 There signal SELL - 1 Values will overwrite every 10ms. [...]
Ignored
DislikedHello, guys. I'm from Russia that's why i'm sorry for my english))) Anybody try to catch signal from MADash to buy or sell? I saw today what this indicator do. It's so easy and at the same time difficult , set setting variable "Alert method" to "Constant color row" and signals will burn very often. But.... Signal two buttons. First button have discription with name of pair, for excample AUDUSD and name of this button is "MadashaxX", where X - the position(numbering) relative(against) another buttons in list. Second button have discription "Sell"...Ignored
Disliked{quote} Hi derMitay, My own preferred approach by the moment, is to save in global variables the current alert status of each pair. I only have to know the global variable variable names and the meaning of their content (id's of the 3 possible status: none/long/short). Having this data available would be a great addition not only to this dashboard, but to any dashboard around (of, course, if their own developers are on the same page regarding this) Cheers!Ignored
int glob = GlobalVariablesTotal();
if (glob>0)
{
for (int i=0; i<glob; i++)
{
string nameGlobVar = GlobalVariableName(i);
if(FindString(nameGlobalVar,"Mad_",0) > -1) // or the same cod to parse name (if (StringSubString(nameGlobVar,0,4) == "Mad_"))
{ // further in cycle you will analize only my vars, it's must be comfortable to you
string namePair = StringSubString(nameGlobVar,5,0); // here we take name of pair, what written in global var
double value = GlobalVariableGet(nameGlobVar); // one of three value
}
}
} double derMitayFunc(string pair)
{
int glob = GlobalVariablesTotal();
if (glob>0)
{
string nameGl = "Mad_" + pair; // i think we can do this without cycle
if (GlobalVariableCheck(nameGl)) // it's easy, here we check "var is live?"
{
return GlobalVariableGet(nameGl); // if var with this name is live we return the value
}
}
return (-2); // else if var is dead we returns default value without errors
} Disliked{quote} ok, i disctibe how i see that idea. i can to write code, i have analized values of your desk and here logic is the same. 1) in initalize my indicator i creat 28 vrs in global. all of them will have the "Mad_"in the begining of name of Global var, i will do it to comfortable to analize vars when i will write code and to you, when you will take values of this global vars. Second part of name of var will be name of pair. for excample cycle how you can use my Global var in future: int glob = GlobalVariablesTotal(); if (glob>0) { for (int i=0;...Ignored
Disliked{quote} ok, i disctibe how i see that idea. i can to write code, i have analized values of your desk and here logic is the same. 1) in initalize my indicator i creat 28 vrs in global. all of them will have the "Mad_"in the begining of name of Global var, i will do it to comfortable to analize vars when i will write code and to you, when you will take values of this global vars. Second part of name of var will be name of pair. for excample cycle how you can use my Global var in future: int glob = GlobalVariablesTotal(); if (glob>0) { for (int i=0;...Ignored
Disliked{quote} Hello aeseme I'm new to all of you have joined. This dashboard that you design. Very impressive. I hope your progress is increasing. I have a question for you. How can I get information about the settings of each item.And that any of these items or applications? Thank you {image}Ignored
Disliked{quote} derMitay, спасибо====================================================== Catalin68, garfield75, What results MADash trade today?
Ignored
Disliked{quote} Madash I put aside the morning and we went with DBMultiASM autom. (the one in the picture) and will go for several days. We reopened at 2 p.m. madash (3 p.m. your time) with the new settings described today. I don't have results, maybe tomorrow, that is set on the candle a day. Today they entered only the signals but I started late.Ignored
DislikedFrom LO open with the BUY All/Sell All Strategy + Casino Market Bias. SWFX Sentiment Index and C5 | C12 shows today the wrong confirmation. {image}Ignored
Disliked{quote} Do you use providers or customers? What's the difference because if today you look on customers was the other way around.Ignored
DislikedBTW.. would it be better with some columns rearranging like in picture?{image}In this test I only moved the columns related to the trades management, but can be any one...Ignored
Disliked{quote} aeseme, It looks much better. Of course this is only my opinion. 1. I do not understand why do we need this block? It is the duplication and we have to avoid duplication. Amenities I also do not see. 2. better to move this block to the right. 3. Displaying MADash better in the "Indicators" block. Or do you plan displaying MADash through PIN? {image}Ignored
DislikedBTW.. would it be better with some columns rearranging like in picture?{image}It doesn't has to be exactly like the picture.. it's just an example that came to my mind and I decided to share..Ignored
Disliked{quote} Most columns can be hidden or disabled.. included these ones.... BTW, I only added this second column of actions because of trades were on the right side.... changing it location would make it a waste of space for sure{image} Right now I'm planning on using MADdash as a PIN.. Later it could have it own container ...
Ignored