- Search Crypto Craft
- lukeb replied May 25, 2016
Click on the text to see the options, one displays the ATR as an account currency value. I'm not saying this does exactly what you want, but it does some similar things to what you are asking for and is where I would start to make the exact utility. ...
I will code your EAs and Indicators for no charge
- lukeb replied May 25, 2016
url If you made the period 1, this would show the value of the last candle in MIN_LOTS
I will code your EAs and Indicators for no charge
- lukeb commented May 24, 2016
Fannie and Freddie were every bit as complicit as the banks for the mortgage frenzy, they all believed real-estate would always go up and they would make more money by getting the land on a default than if the loan was good.
The legal technicality that let BofA skate on an alleged billion-dollar mortgage fraud
- lukeb replied May 18, 2016
This is the same ea, just touched it to make it compile with #property strict and made the formatting a little more readable.
Still Basketting
- lukeb replied May 18, 2016
url I didn't like the way the longer timeframe plots were just strings of samples unless you clicked to refresh, so I've added code to make the values in the plots true to the bar number.
I will code your EAs and Indicators for no charge
- lukeb replied May 16, 2016
If there is no souce code (mq4), I generrally just consider a posting clutter. Even then, time for free work is very limited-generally to TV time, so I don't pick up much.
I will code your EAs and Indicators for no charge
- lukeb replied May 15, 2016
I made one similar - try it out. I think showing multi-timeframe plots is unproductive, consider, as shown that 10 bars for the 1 hr plot is 10 hrs ago, but 10 bars on the 1 min plot is 10 minutes ago. In draw forward, it also produces the odd ...
I will code your EAs and Indicators for no charge
- lukeb replied May 12, 2016
Please explain a little more. I wonder if this is similar to skmething I made years ago, if so,I'll dust it off and clean it up for you.
I will code your EAs and Indicators for no charge
- lukeb replied May 10, 2016
This is an indicator with code showing this being done
I will code your EAs and Indicators for no charge
- lukeb replied May 7, 2016
Description of the values url
I will code your EAs and Indicators for no charge
- lukeb replied May 7, 2016
Small updates - its raining here, I should be out-and-about, instead I'm wasting Saturday staring at my computer screen.
I will code your EAs and Indicators for no charge
- lukeb replied May 7, 2016
Have you referenced the Angleator? I'm sure you have seen the tool on the TMS forums. That tool gives you the statistics on time frames (You can select from all or limited set of timeframes) in one view for red/green crossing. url
I will code your EAs and Indicators for no charge
- lukeb replied May 6, 2016
Here it is - I just watched it work on a Forex.com demo account - so its kinda tested. In history, the indicator is based on bar information, so its not exactly the same as real time quotes. You can select PA or Bars to generate signals - makes a ...
I will code your EAs and Indicators for no charge
- lukeb replied May 2, 2016
Seems that is what all of your oscillators and trend indicators are 'trying' to help you identify (RSI, DeMarker, SuperTrend, Stochastic, ZigZag, Fractals, Parabolic SAR, Standard Deviation, many more), along with everyone drawing support and ...
Do you look for or trade exhaustion?
- lukeb replied May 2, 2016
Here is source code to do everything specified (and more). url Turn off ordering (by clicking on the ordering text setting the properties), just use the buttons. Easy to strip down to just do what you specify.
I will code your EAs and Indicators for no charge
- lukeb replied May 1, 2016
Updated from previous post: url I made the counter into an indicator (no reason to use your EA slot to experiment with order history) Seems to work - I learned something about Order History - it is short lived. Appears to be only 1 weeks worth on ...
I will code your EAs and Indicators for no charge
- lukeb replied Apr 30, 2016
Play with this (press the Count Button) - I'm not sure OrderType() returns one of the 6 valid types for closed orders. It appears to on my demo Forex.com account, and not to on my Oanda demo account.
I will code your EAs and Indicators for no charge
- lukeb replied Apr 30, 2016
First, this is what your indicator does. It places arrows on the chart when the WPR (Williams Percentage Range) indicator crosses the -20 or -80 level (see the red lines), per this call to iWPR in the code: iWPR(NULL, 0, l_period_24, li_4), with the ...
I will code your EAs and Indicators for no charge
- lukeb replied Apr 29, 2016
Haven't done it, but seems like code similar to this should do it: int reportCount = 0, newestOrderType = -1; int historyCountTotal = OrdersHistoryTotal(); for ( int i = 0; i<historyCountTotal; i++) { if ( true == OrderSelect(i, ...
I will code your EAs and Indicators for no charge
- lukeb replied Apr 27, 2016
Like this? double value1 = iCustom(NULL,0,"!!!MA",0,1) ; double value2 = iCustom(NULL,0,"MA",8,2,1.5,1,10000,false,0,1); bool diffIsBigEnough = ((value1-value2)>0.01)?true:false; if ( true==diffIsBigEnough ) { // do something }
I will code your EAs and Indicators for no charge