- Search Metals Mine
-
nubcake replied Jun 13, 2011what errors? you need to help us help you. no, that's the point. you did it the ultimate worst way, and MJ cleaned it up and made it how it should be.
How to configure global variable according to currency pair?
-
nubcake replied Jun 13, 2011cool cool. i guess it's like any job where you just get over it and don't want to deal with it much anymore. the new toy feeling has gone. do you have any opinion (or better-yet, evidence) on a resolution/timeframe that fundies make the most obvious ...
Short Term Vs. Long Term Trading
-
nubcake replied Jun 13, 2011the thing with that is you are playing it both ways because you CAN. for you it is not that a higher timeframe or lower timeframe provides or removes an edge, it's that you appear to have an edge and can play it out any way that serves you. if the ...
Short Term Vs. Long Term Trading
-
nubcake replied Jun 13, 2011temporary profits. you find a way to keep those profits and i'll be interested. until then it's all just a capital game and when it all goes pear-shaped blaming someone for not having enough money to begin-with... well if they had the damn money ...
Short Term Vs. Long Term Trading
-
nubcake replied Jun 13, 2011that's the problem redlion. you don't have any ideas of your own. you just recite the mantra's from fti's thread. i can see you exploring different things and ideas and perspectives, but it always comes back to the same nonsense dogma of that ...
Short Term Vs. Long Term Trading
-
nubcake replied Jun 12, 2011i'm just an unprofitable pleb... but, how could it be possible that a higher timeframe is ever better than a lower timeframe? a higher timeframe is made up of the lower timeframes. if you look at a higher timeframe you have lost all of the data in ...
Short Term Vs. Long Term Trading
-
nubcake replied Jun 12, 2011don't know dude. stick a print before each of the ordermodify commands and make them unique like... Print('ordermod1') Print('ordermod2') or even just print('a'); print('b'); print('c'); then you will see each section print and then an error will ...
Loop not grabbing all orders
-
nubcake replied Jun 12, 2011i wonder if the price you are trying to set them to isn't too close to the the current bid/ask price, and your broker simply rejects them as such.
Loop not grabbing all orders
-
nubcake replied Jun 12, 2011do you have a firewall program on the laptop? if so my money would be on that being the problem. the fact that mt4 runs when you aren't online tells me you have a firewall issue when it tries to connect when the net is running. it wouldn't surprise ...
MT4 Freezes my laptop
-
nubcake replied Jun 12, 2011they way you have done it is still wrong. i'm not certain that the function escapes at the point or simply buffers the return value and continues to run the code until finished, but i suspect that it is meant to escape as soon as that return ...
Loop not grabbing all orders
-
nubcake replied Jun 12, 2011dude............. double LastOrder() { int LargestTicket = 0; double Openprice = 0.0; for(int i = (OrdersTotal()-1); i >= 0; i --) { OrderSelect(i, SELECT_BY_POS, MODE_TRADES); if (OrderType()==OP_BUY) { if(OrderTicket() > LargestTicket) { ...
Loop not grabbing all orders
-
nubcake replied Jun 12, 2011never use a for do loop if you are removing items from the list you are iterating through. straight away in your modify function i see a call to an order delete function intended to remove certain buy_limits, but this is within a for do loop. let's ...
Loop not grabbing all orders
-
nubcake replied Jun 12, 2011no you aren't unprof and unintel... you are just refusing keys to the bentley because you are looking for the porche. as far as fudges are concerned.... have you used mt4? the whole thing is a fudge, including it's scripting language. the only way ...
Change individual candle colours
-
nubcake replied Jun 12, 2011what the hell is the point? no you can't programmatically change the colour scheme. of course there is nothing stopping people from programmatically opening the settings file tha contains the chart colour scheme and actually changing the file so ...
Change individual candle colours
-
nubcake replied Jun 10, 2011lol, dude i know! but what you are saying is like describing a tick as a mental glitch resulting in unwanted and unintended verbal and / or physical outbursts.... it's not incorrect, it's just out of context. in the context of trading pyramiding is ...
Finally I'm profitable - I need help coding the EA - Willing to share the strategy
-
nubcake replied Jun 9, 2011damnit seeker you stooge
fine. martingale != pyramid != ponzi/MLM martingale adds risk and removes reward pyramid removes risk and adds reward ponzi/MLM will make you buy avon et al.Finally I'm profitable - I need help coding the EA - Willing to share the strategy
-
nubcake replied Jun 9, 2011fair nuf. i'm just as guilty as anyone of going the cheap route when it suits.

Trouble with Global Variables
-
nubcake replied Jun 9, 2011hmm not so fast thar... that doesn't really make sense. you are saying it's easier to manually specify a different magic number for each instance of the ea instead of letting it automatically configure itself? seems like you are trying to get around ...
Trouble with Global Variables
-
nubcake replied Jun 9, 2011crap on a cracker... even more intense than i was talking about. very nice mj!
How to configure global variable according to currency pair?
-
nubcake replied Jun 9, 2011correct... but if you want to take it a step further, and the direction i was thinking, if you want to be able to deal with virtually unlimited number of chart symbols as well as allowing for exotic non-standard symbol names then i would lean to ...
How to configure global variable according to currency pair?