Louis Stoltz
Louis Stoltz
  • Information
10+ years
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Louis Stoltz
Added topic Best formula to find peaks please.
What is the best formula to find the last 5 peaks of the market. Would you use high[iHighest(NULL,0,MODE_HIGH,InpDepth,i)]; Can I use a channel to find it. What is the best accurate method to find the best peaks? With a standard deviation channel it
Louis Stoltz
Added topic Strategy tester charts and live charts differ with technical indicators
I have tested out two indicators, moving averages and RVI with live trading and the strategy tester . They seem to differ evetime. I cant seem to backtest and get perfect matching to calculate my winning strategy I have two screenshots attached of
Louis Stoltz
Added topic Orderhistory Matching howto
/** Scan History **/ bool InHistory(double magic) { int i,hstTotal=OrdersHistoryTotal(); for(i=0;i<hstTotal;i++) { OrderSelect(i, SELECT_BY_POS, MODE_HISTORY); if(OrderMagicNumber() == magic) { return(TRUE); break; } else { return(FALSE); } } }
Louis Stoltz
Added topic Icustom am I missing something here.
#property indicator_chart_window #property indicator_buffers 3 #property indicator_color1 Yellow #property indicator_color2 Yellow #property indicator_color3 Yellow /**   Extern variables **/ double sar1 = 0.002 ; double sar2 = 0.2 ; int
Louis Stoltz
Added topic List currency pairs function
Hi Is there a function or script available for listing all the brokers available currency pairs
Louis Stoltz
Added topic Parabolic Sar Exact price onchange
Hi With the parabolic sar I would like to make an indicator I have more precise. When the Isar changes on a 1 hourly bar chart how do you calculate the price where it changed the isar from long to short
Louis Stoltz
Added topic Metatrader Update
Hi Did MetaTrader update overnight and change its folder structure
Louis Stoltz
Added topic Timecurrent sum question
Hi How do you make datetime past = TimeCurrent(); minus 15 minutes
Louis Stoltz
Added topic CSV Signals how to read
Hi say for example I have file with these signals. Open Date,Close Date,Symbol,Action,Lots,SL,TP,Open Price, Close Price ,Commission,Swap,Pips,Profit,Magic Number 01/28/2014 15:00,01/28/2014
Louis Stoltz
Added topic Mysql Signals Debug help please
I coded this mysql mql4 from scripts I found of these forums and I got it to work right. I put this on AUDNZD Chart and started trading only the one pair but I have also other pairs that I want to trade and I don't want to open multiple charts and
Louis Stoltz
Added topic Trade with time instead of price.
Who is the best coder to look at with the most profitable expert advisor that trades with time instead of price. So I mean you trade now and you exit in a few minutes calculated by a formula. What is the best formula for this and who is the best guy
Louis Stoltz
Added topic Metatrader being the devil with backtesting?
I found that metatrader and backtesting is looking like a devil saying yes and laughing at me. I ran many expert advisors including the moving average that comes default with metatrader and when you run it over a few days with tick data or openprices
Louis Stoltz
Added topic Unique groups of numbers
Say for example I have a range of numbers I can use from 1 - 10 ok. What I actually want is unique sequences of that range, ie. 10,9,7,8,4,6,5,1,3,2 2,1,4,3,5,6,7,8,9,10 I know you can shuffle arrays but how do get uniques shuffles with maybe a seed
Louis Stoltz
Added topic Variable Variables
How do you make a variable variable in mql4 ie. int count= 0 ; count++; double calc = high* var {count}; Where var variable would be var1
Louis Stoltz
Added topic Fibonacci Highest and Lowest
Hello again What is your best formula for finding fibonacci highs and lows. I have this one that works for me but It draws from windowsfirstVisible bar.. What is the best formula you have found for these highs and lows? int fibHigh = iHighest (
Louis Stoltz
Added topic Create your own virtual market
How? How can I create my own virtual market like EURUSD but ALIENDOLLAR vs ALIENPOUNDS .. Like for a game. Has anybody ever written code for this? *Also I subscribe to these forum topics but never get emailed when someone replies
Louis Stoltz
Added topic Shuffle array or random number
Hi How can I get a random number between two numbers ie. 1 and 100 with mql4 functions ? And how do you shuffle an array with mql4 with random seed. Thanks
Louis Stoltz
Added topic After Angle Formula
Hi I have question about predicting future highs and lows. Say for example I have highs and lows of the past and its high 100 and low 10 and the angle of the trend is moving 45degrees up and after 20 bars of 5minute data the highs are 120 and low
Louis Stoltz
Added topic Future highs in backtesting
Hi Im trying to code something for strategy tester but want to get future bars highest Past bars highest is High[iHighest(NULL,0,MODE_HIGH,40,0)]; But future Im not sure how to get it High[iHighest(NULL,0,MODE_HIGH,40,-40)]; That doesnt work. Anybody
Louis Stoltz
Added topic Predict Next Barlow and next Barhigh
Seasonal Greetings What is mq4 best way of predicting the next bars high and low
123