Map The Process

Move one. Before a single line of code, draw the work as it really happens and see every step.

TRIGGER Trade closes READ Pull the fields SHAPE One clean row WRITE Append to sheet

A process you cannot draw is a process you cannot automate.

Four questions, and the map is done

Answer these for any task and the shape of the automation is already clear.

WHAT STARTS IT

The trigger: a trade that closes, a file that lands, a clock that ticks.

WHAT GOES IN

The inputs: the exact fields, files and numbers the task reads to do its job.

WHAT HAPPENS

The steps in order, split into the repetitive moves and the real decisions.

WHAT COMES OUT

The result: a row in a sheet, a dashboard, an order, a message.

The trade journal, mapped

Once the journal was drawn as a map, the code wrote itself around it. Trigger, inputs, one shaping step, one write. Nothing to guess, nothing to invent.

Trigger: a position closes on the terminal
Inputs: entry, exit, size, result, strategy tag
Step: shape one tidy row, repetitive, no judgment
Output: append to the strategy sheet, live dashboard updates
journal_map.txt
# drawn before any code
on trade_closed:
    fields = read_closed_trade()
    row    = shape_row(fields)     # repetitive
    sheet  = pick_sheet(strategy)  # by tag
    append(sheet, row)             # output

The map is the plan

With the process on paper, the repetitive steps are obvious. Those are the ones to hand off next.