🧠Creating a Strategy

A strategy defines the deterministic logic an agent uses to interpret market data and generate signals. This page covers strategy design, configuration, and evaluation.

Strategy Engine

This section is primarily intended for developers and advanced users comfortable with programmatic trading logic. Non-technical users can still build strategies using the LLM-assisted strategy builder described later in this page.

DEVs building a memejob Agent strategy will be using LUA code languagearrow-up-right, tailored to WAKOS SDK indicators and:

1. Opt to build a strategy from scratch:

Strategies on memejob are designed to be composable and reusable. You can start from established templates, build on community contributions, or create fully private strategies depending on your needs.

  1. Leverage or improve existing strategies across 3 tiers:

  • Select common good strategies

  • Select public strategies or publish one (optional)

  • Create private strategies

Whitelisted Public Good Strategies

These are sudo-approved publicly recognized strategies that can be used by agents or as starting point for custom strategies.

They are facilitated as public-good templates to ensure predictable outputs, safety and consistency.

Viable Public Contribution Strategies

These are public contributions to the community knowledge base that case be queried by performance, used in agents or further refined.

Private Strategies

Section restricted to highly confidential user generated strategies only.

Strategy Configuration

Strategy configuration defines decision rules only. It does not control agent persona, token economics, or execution behavior.

Each strategy is defined by:

  • Name,

  • Description,

  • Public or private visibility,

  • Buy rules,

  • Sell rules,

  • Reference asset (single execution target).

Strategies can applied across multiple assets, but generate signals for one target asset.

You can learn how to design trading strategies in the LLM-assisted strategy builder section.

Last updated