Definition: ### Cycle The cycle is when there is a signal and an order is opened, it can be alone or a grid of orders. When all orders originating from this signal are closed, the cycle ends. ### Indicators The EA must have two categories of indicators: ## Modes: 1 - for opening orders 2 - filter, just to block the opening of orders The indicators to be used: - printer: mode 1 - step average: mode 1 and 2 - channel: mode 2 ## Uses: - printer mode 1, used alone. Or in conjunction with step average and / or channel mode 2 - step average mode 1, used alone. Or in conjunction with channel - channel: used only in mode 2. Never alone ## BUY signal indicators only #Printer case 1 printer mode 1 true step average mode 2 false channel mode 2 false If the blue arrow on the printer = buy signal appears case 2 printer mode 1 true step average mode 2 true channel mode 2 false If the printer's blue arrow and blue step average = buy signal appear case 3 printer mode 1 true step average mode 2 false channel mode 2 true If the blue arrow of the printer appears and the channel conditions ok = buy signal case 4 printer mode 1 true step average mode 2 true channel mode 2 true If the printer's blue arrow, blue step average and channel conditions ok = buy signal appear #Step average case 1 step average mode 1 true channel mode 2 false If step average is blue = buy signal case 2 step average mode 1 true channel mode 2 true If step average is blue and channel conditions ok = buy signal ## SELL signal indicators only #Printer case 1 printer mode 1 true step average mode 2 false channel mode 2 false If the red arrow of the printer = sell signal appears case 2 printer mode 1 true step average mode 2 true channel mode 2 false If the printer's red arrow and orange step average = sell signal appear case 3 printer mode 1 true step average mode 2 false channel mode 2 true If the printer's red arrow appears and the channel conditions ok = sell signal case 4 printer mode 1 true step average mode 2 true channel mode 2 true If the red arrow of the printer appears, orange step average and the channel conditions ok = sell signal #Step average case 1 step average mode 1 true channel mode 2 false If step average is orange = sell signal case 2 step average mode 1 true channel mode 2 true If step average is orange and channel conditions ok = sell signal ## Channel Within the channel: if true you can open orders within the channel. If false does not open orders within the channel Outside the channel: if true you can open orders outside the channel. If false does not open orders outside the channel Outside the channel: against trend: if true outside the channel you can open orders against trend. If false can open orders outside the channel in favor of the trend Case 1 Inside the channel: true Out of channel: false Out of channel: false Ea will only open orders within the channel Case 2 Inside the channel: true Out of channel: true Out of channel: false Ea will be able to open orders inside the channel Case 3 Inside the channel: true Out of channel: true Out of channel: true Ea will open orders within the channel, and outside it will only be able to open buy below the channel and sell above the channel Case 4 Inside the channel: false Out of channel: true Out of channel: false Ea will only be able to open orders outside the channel Case 5 Inside the channel: false Out of channel: false Out of channel: true Ea will be able to open buy orders below the channel and sell above the channel ### Printer_Indicator_Setting PrinterSignalMode: WaitForNextSignal - when placed on the chart, the EA will wait for a new signal to open order. LastPrintedSignal - when placed on the chart, the EA will open an order immediately, in the same direction as the last signal. ArrowsFilter: if it is easier for you, you can remove this function. ExitOnOpposite: If true: the EA will close all orders when the indicator changes direction. For example, with Buy orders open and a Sell signal, the EA will close all BUY orders, and start a new cycle with a SELL order.