Skip to main content

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.

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()
);