Support Board
Date/Time: Sat, 11 Jan 2025 17:55:23 +0000
Post From: Automated Trading System - Limiting Entries
[2016-12-10 17:53:18] |
Sawtooth - Posts: 4148 |
You can reference cell J52 in your K3/M3 entry formulas. Here's what I do, e.g.: -Put your sell entry formula in P3, then set SG6 to Arrow Down: =IF(YourEntryConditions),C3,0) -Put this in M3, then set SG3 to Hidden: =AND(P3>0,$J$52<=5) You'll get arrows at all your possible entries, but actual entries only up to 5 per day. You can use a cell in column H as a user parameter so that you don't have to edit the formula if you want to change the value: =AND(P3>0,$J$52<=$H$2) |