> ## Documentation Index
> Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Adding stores

```Java theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
configurator.addStore("Sensitivities",
        configurator.storeBuilder("Sensitivities")
        .withStoreName("Delta")
        .withField("Trade", ILiteralType.STRING).asKeyField()
        .withField("AsOfDate", ILiteralType.LOCAL_DATE)
        .withField("Delta", ILiteralType.DOUBLE)
        .build()
);
configurator.addStore("Sensitivities",
        configurator.storeBuilder("Sensitivities")
        .withStoreName("MarketData")
        .withField("Date", ILiteralType.LOCAL_DATE).asKeyField()
        .withVectorField("Quotes", ILiteralType.DOUBLE)
        .build()
);
```
