Need a quote to programm simple algo strategy for MT4 and NinjaTrader8 to use in combination with manual entry/control. Please send your quotes. Algo Logic is :Set once a day (outside of trading session) ManualPriceLevel that will be used (during trading session) to compare at specified (SetTimeHour and SetTimeMin) to PriceOpen(symbol1). Entry and exit signals are based on (Symbol1) only but traded instruments are (Symbol2) and (Symbol3) . Opening/closing orders according to rules below: Entry rules : enterSymbol2Long = 1 ;(1=long; -1=short; 0=no trade) Enter (Symbol2) order if: next bar PriceOpen( symbol1) > ManualPriceLevel; enterSymbol3Long = 1; (1=long; -1=short; 0=no trade) Enter (Symbol3) order if: next bar PriceOpen( symbol1) < ManualPriceLevel; No stoploss no takeprofit no trailing Algo is "always in market". With signal Enter(Symbol3) EA will need to open (Symbol3)order and close existing (Symbol2) order ( and new signal on Enter(Symbol2) EA will need to open new open r (Symbol2)order and close existing (Symbol3) order). When direction of new sinal is the same with existing order +no new order is opened as it will continue with existing order. Any order opening or closing need to happen only with change in direction on signal(Symbol1). Algo will be trading CFD's and have manual LotSize to override calculated position size. Algo need to calculate position size for each Symbol2 and Symbol3 based on set EquityLot ($$) Calculate number of shares rounded down to nearest x10. (Example EquityLot=10000.00, PriceLevel(symbol2)=115.35 ....LongPoz= 80 shares) Algo need to work independend from switching timeframes and charts if possible. user set parameters: ManualPriceLevel = 85.55; SetTimeHour =13; SetTimeMin = 11; Symbol1= AAPL; Symbol2= FB; enterSymbol2Long = 1 ;(1=long; -1=short; 0=no trade) Symbol3 = NVDA; enterSymbol3Long = 1 ;(1=long; -1=short; 0=no trade) EquityLot = 10000.00; ($$) ManualLotSize = 1.0 ;( if = zero, calculate lot size automatically by EquityLot) =========== UseLimitOrders = 0 (1=LimitOrders; 0=MarketOrders) Algo need ability to close fully existing orders after oposite signal and re-check or resend closing order if not closed and have some standard checks for its closing and opening order errors. Also nice to have some basic dispaly panel overlay on the chart with user set parameters displayed for monitoring. Let me know if any questions in the logic..