AlphaCapture Protocol
  • Getting Started
    • Overview
    • Use Cases
  • Basic Concepts
    • Proof of Performance
      • Proof of Idea
      • Proof of Trade
    • Pricing
      • Stop Losses
      • Supported Assets
    • Access Control
    • zkSubscription
      • Marketplaces
    • Verification
    • FAQs
  • SDK Reference
    • Installation
    • Strategies
      • Retrieving Strategies
        • My Strategies
        • Accessible Strategies
        • All Strategies
        • Creator Strategies
      • Get Strategy (Signal)
      • Get Strategy (Rebalance)
        • Get Rebalances
        • Get Rebalance (Single)
        • Get Current Portfolio
    • Ideas
      • Retrieving Ideas
      • Creating Ideas
        • Proof of Idea
        • Proof of Trade
        • Estimated Costs
        • Asset Price Check
      • Adjusting Idea
      • Closing Ideas
        • Proof of Idea
        • Proof of Trade
      • Share of Token
      • Miscellaneous
  • D2 Execution
    • Overview
Powered by GitBook
On this page
  1. SDK Reference
  2. Strategies
  3. Retrieving Strategies

My Strategies

Returns a list of strategies where the requesting wallet is the creator i.e. the strategies you created.

// Initialize the SDK
const activ = await getActiv();

// Set paging parameters
const page = req.query.page ? parseInt(req.query.page as string) : 1;
const limit = req.query.limit ? parseInt(req.query.limit as string) : 10;

// Request strategies
const strategies = await activ.query.listMyStrategies(page, limit);

// Alternative method
const sType = 'my';
const strategiesVar = await activ.query.listStrategiesByCreator(creatorWallet, sType, page, limit);
PreviousRetrieving StrategiesNextAccessible Strategies

Last updated 1 year ago